Skip to content

Commit 0ba12f7

Browse files
committed
Merge pull request #7 from shipunyc/master
Updates SDK version from 0.9.1 to 0.9.2
2 parents 4f9b728 + cc32cb0 commit 0ba12f7

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ To get the binaries of this library as distributed by Microsoft, ready for use w
1414
<dependency>
1515
<groupId>com.microsoft.azure</groupId>
1616
<artifactId>azure-documentdb</artifactId>
17-
<version>0.9.1</version>
17+
<version>0.9.2</version>
1818
</dependency>
1919

2020
###Option 2: Source Via Git

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.microsoft.azure</groupId>
55
<artifactId>azure-documentdb</artifactId>
6-
<version>0.9.1</version>
6+
<version>0.9.2</version>
77
<name>${project.groupId}:${project.artifactId}</name>
88
<description>Java SDK for Microsoft Azure DocumentDB</description>
99
<url>http://azure.microsoft.com/en-us/services/documentdb/</url>

src/com/microsoft/azure/documentdb/HttpConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ public static class Versions {
153153

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

156-
public static String USER_AGENT = "documentdb-java-sdk-0.9.1";
156+
public static String USER_AGENT = "documentdb-java-sdk-0.9.2";
157157
}
158158

159159
public static class StatusCodes {

src/com/microsoft/azure/documentdb/JsonSerializable.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public void remove(String propertyName) {
111111
*
112112
* @param <T> the type of the object.
113113
* @param propertyName the property to set.
114-
* @param value, the value of the property.
114+
* @param value the value of the property.
115115
*/
116116
@SuppressWarnings({ "unchecked", "rawtypes" })
117117
public <T extends Object> void set(String propertyName, T value) {
@@ -257,7 +257,7 @@ public Double getDouble(String propertyName) {
257257
*
258258
* @param <T> the type of the object.
259259
* @param propertyName the property to get.
260-
* @param c, the class of the object. If c is a POJO class, it must be a member (and not an anonymous or local)
260+
* @param c the class of the object. If c is a POJO class, it must be a member (and not an anonymous or local)
261261
* and a static one.
262262
* @return the object value.
263263
*/

src/com/microsoft/azure/documentdb/QueryIterable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ public void reset() {
159159
* Fetch the next block of query results.
160160
*
161161
* @return the list of fetched resources.
162-
* @throws DocumentClientException
162+
* @throws DocumentClientException the document client exception.
163163
*/
164164
public List<T> fetchNextBlock()
165165
throws DocumentClientException {

0 commit comments

Comments
 (0)