Skip to content

Commit

Permalink
upgrade to 0.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
kwadhwa18 committed Sep 20, 2023
1 parent 99d62be commit 9fba15b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Rockset Java Client Changelog

## v0.10.3 2023-09-19
- Fix async calls with okhttp3
- Support the latest Rockset API endpoints and improvements

## v0.10.2 2023-09-08
- Support the latest Rockset API endpoints and improvements
- upgrade okhttp to okhttp3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.rockset</groupId>
<artifactId>rockset-java</artifactId>
<version>0.10.2</version>
<version>0.10.3</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>rockset-java</artifactId>
<packaging>jar</packaging>
<name>Rockset Java</name>
<version>0.10.3-SNAPSHOT</version>
<version>0.10.3</version>
<url>https://github.com/rockset/rockset-java-client</url>
<description>The official Rockset Java client library</description>
<scm>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/rockset/client/RocksetClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public RocksetClient(String apiKey, String apiServer, String application) {
new ApiClient()
.setApiKey(apiKey)
.setApiServer(apiServer)
.setVersion("0.10.2") // TODO: figure out how we can set this dynamically.
.setVersion("0.10.3") // TODO: figure out how we can set this dynamically.
.setUserAgent(userAgent);

this.aliases = new AliasesApi(this.apiClient);
Expand Down

0 comments on commit 9fba15b

Please sign in to comment.