Skip to content

Commit

Permalink
Merge pull request #7 from shipunyc/master
Browse files Browse the repository at this point in the history
Updates SDK version from 0.9.1 to 0.9.2
  • Loading branch information
aliuy committed Jan 7, 2015
2 parents 4f9b728 + cc32cb0 commit 0ba12f7
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ To get the binaries of this library as distributed by Microsoft, ready for use w
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-documentdb</artifactId>
<version>0.9.1</version>
<version>0.9.2</version>
</dependency>

###Option 2: Source Via Git
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-documentdb</artifactId>
<version>0.9.1</version>
<version>0.9.2</version>
<name>${project.groupId}:${project.artifactId}</name>
<description>Java SDK for Microsoft Azure DocumentDB</description>
<url>http://azure.microsoft.com/en-us/services/documentdb/</url>
Expand Down
2 changes: 1 addition & 1 deletion src/com/microsoft/azure/documentdb/HttpConstants.java
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public static class Versions {

public static String CURRENT_VERSION = "2014-08-21";

public static String USER_AGENT = "documentdb-java-sdk-0.9.1";
public static String USER_AGENT = "documentdb-java-sdk-0.9.2";
}

public static class StatusCodes {
Expand Down
4 changes: 2 additions & 2 deletions src/com/microsoft/azure/documentdb/JsonSerializable.java
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public void remove(String propertyName) {
*
* @param <T> the type of the object.
* @param propertyName the property to set.
* @param value, the value of the property.
* @param value the value of the property.
*/
@SuppressWarnings({ "unchecked", "rawtypes" })
public <T extends Object> void set(String propertyName, T value) {
Expand Down Expand Up @@ -257,7 +257,7 @@ public Double getDouble(String propertyName) {
*
* @param <T> the type of the object.
* @param propertyName the property to get.
* @param c, the class of the object. If c is a POJO class, it must be a member (and not an anonymous or local)
* @param c the class of the object. If c is a POJO class, it must be a member (and not an anonymous or local)
* and a static one.
* @return the object value.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/com/microsoft/azure/documentdb/QueryIterable.java
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public void reset() {
* Fetch the next block of query results.
*
* @return the list of fetched resources.
* @throws DocumentClientException
* @throws DocumentClientException the document client exception.
*/
public List<T> fetchNextBlock()
throws DocumentClientException {
Expand Down

0 comments on commit 0ba12f7

Please sign in to comment.