Skip to content

Commit 8b11204

Browse files
committed
Release version 0.2.3
1 parent 41a9714 commit 8b11204

File tree

5 files changed

+17
-10
lines changed

5 files changed

+17
-10
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015 The SoftLayer Developer Network
3+
Copyright (c) 2016 The SoftLayer Developer Network
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ To add the project you your Maven project, add the dependency:
3131
<dependency>
3232
<groupId>com.softlayer.api</groupId>
3333
<artifactId>softlayer-api-client</artifactId>
34-
<version>0.2.2</version>
34+
<version>0.2.3</version>
3535
</dependency>
3636
```
3737

@@ -230,6 +230,13 @@ The services are not guaranteed to be thread-safe on their own, so it is difficu
230230
style, the `ResponseHandlerWithHeaders` can be used instead of `ResponseHandler`. But the safest way is to only use a
231231
single service per thread.
232232

233+
### Differences from the API
234+
235+
Due to restrictions on identifiers in Java, some properties, methods, classes, and packages will be named differently
236+
from the naming used by the API. For example, an API property that starts with a number will be prepended with 'z'.
237+
[Java keywords](https://docs.oracle.com/javase/specs/jls/se8/html/jls-3.html#jls-3.9) that appear in identifiers may
238+
also be replaced.
239+
233240
## Building
234241

235242
This project is intentionally provided without all of the service code. Normal Maven `install` and `package` commands
@@ -265,4 +272,4 @@ fully qualified class name of your implementation on a single line in a file in
265272

266273
## Copyright
267274

268-
This software is Copyright (c) 2015 The SoftLayer Developer Network. See the bundled LICENSE file for more information.
275+
This software is Copyright (c) 2016 The SoftLayer Developer Network. See the bundled LICENSE file for more information.

examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>softlayer-api-client-examples</artifactId>
66
<packaging>jar</packaging>
77
<!-- Please keep version in sync with README -->
8-
<version>0.2.2</version>
8+
<version>0.2.3</version>
99
<name>softlayer-api-client-examples</name>
1010
<url>http://sldn.softlayer.com</url>
1111
<licenses>

gen/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>softlayer-api-client-gen</artifactId>
66
<packaging>jar</packaging>
77
<!-- Please keep version in sync with README -->
8-
<version>0.2.2</version>
8+
<version>0.2.3</version>
99
<name>softlayer-api-client-gen</name>
1010
<url>http://sldn.softlayer.com</url>
1111
<licenses>

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<artifactId>softlayer-api-client</artifactId>
55
<packaging>jar</packaging>
66
<!-- Please keep version in sync with README -->
7-
<version>0.2.2</version>
7+
<version>0.2.3</version>
88
<name>SoftLayer API Client for Java</name>
99
<description>API client for accessing the SoftLayer API</description>
1010
<url>http://sldn.softlayer.com</url>
@@ -17,9 +17,9 @@
1717
</licenses>
1818
<developers>
1919
<developer>
20-
<id>cretz</id>
21-
<name>Chad Retz</name>
22-
<email>cretz@softlayer.com</email>
20+
<id>camporter</id>
21+
<name>Cameron Porter</name>
22+
<email>cmporter@softlayer.com</email>
2323
<organization>SoftLayer</organization>
2424
<organizationUrl>http://softlayer.com</organizationUrl>
2525
<roles>
@@ -33,7 +33,7 @@
3333
<connection>scm:git:git@github.com:softlayer/softlayer-java.git</connection>
3434
<developerConnection>scm:git:git@github.com:softlayer/softlayer-java.git</developerConnection>
3535
<url>git@github.com:softlayer/softlayer-java.git</url>
36-
<tag>0.2.2</tag>
36+
<tag>0.2.3</tag>
3737
</scm>
3838
<properties>
3939
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

0 commit comments

Comments
 (0)