Skip to content

Commit

Permalink
Bump version in readme files
Browse files Browse the repository at this point in the history
  • Loading branch information
zhicwu committed Jan 16, 2022
1 parent fbe7d71 commit d42ede2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,16 +48,16 @@ Java 8 or higher is required in order to use Java client([clickhouse-client](htt
.set("max_rows_to_read", 100)
.set("read_overflow_mode", "throw")
.execute()
.whenComplete((r, t) -> {
if (t != null) {
log.error("Unexpected error", t);
.whenComplete((response, throwable) -> {
if (throwable != null) {
log.error("Unexpected error", throwable);
} else {
try {
for (ClickHouseRecord r : r.records()) {
for (ClickHouseRecord rec : response.records()) {
// ...
}
} finally {
r.close();
response.close();
}
}
});
Expand Down Expand Up @@ -99,7 +99,7 @@ Java 8 or higher is required in order to use Java client([clickhouse-client](htt
<groupId>com.clickhouse</groupId>
<!-- or clickhouse-grpc-client if you prefer gRPC -->
<artifactId>clickhouse-http-client</artifactId>
<version>0.3.2-patch1</version>
<version>0.3.2-patch2</version>
</dependency>
```

Expand Down Expand Up @@ -135,7 +135,7 @@ try (ClickHouseClient client = ClickHouseClient.newInstance(preferredProtocol);
<!-- will stop using ru.yandex.clickhouse starting from 0.4.0 -->
<groupId>com.clickhouse</groupId>
<artifactId>clickhouse-jdbc</artifactId>
<version>0.3.2-patch1</version>
<version>0.3.2-patch2</version>
<!-- below is only needed when all you want is a shaded jar -->
<classifier>http</classifier>
<exclusions>
Expand Down
2 changes: 1 addition & 1 deletion clickhouse-jdbc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Keep in mind that `clickhouse-jdbc` is synchronous, and in general it has more o
<!-- will stop using ru.yandex.clickhouse starting from 0.4.0 -->
<groupId>com.clickhouse</groupId>
<artifactId>clickhouse-jdbc</artifactId>
<version>0.3.2-patch1</version>
<version>0.3.2-patch2</version>
</dependency>
```

Expand Down

0 comments on commit d42ede2

Please sign in to comment.