Skip to content

Commit

Permalink
switch to v0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
zhicwu committed Mar 14, 2022
1 parent 772d304 commit 30814bf
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ on:
driver:
description: "Driver version"
required: true
default: "0.3.2-SNAPSHOT"
default: "0.3.3-SNAPSHOT"
options:
description: "Benchmark options"
required: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/legacy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
version:
description: "Legacy driver version"
required: true
default: "0.3.2-SNAPSHOT"
default: "0.3.3-SNAPSHOT"

jobs:
release:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
version:
description: "Release version"
required: true
default: "0.3.2-SNAPSHOT"
default: "0.3.3-SNAPSHOT"

jobs:
release:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ Note: in general, the new driver(v0.3.2) is a few times faster with less memory
<groupId>com.clickhouse</groupId>
<!-- or clickhouse-grpc-client if you prefer gRPC -->
<artifactId>clickhouse-http-client</artifactId>
<version>0.3.2-patch7</version>
<version>0.3.3</version>
</dependency>
```

Expand Down Expand Up @@ -148,7 +148,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-patch7</version>
<version>0.3.3</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-client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Async Java client for ClickHouse. `clickhouse-client` is an abstract module, so
<dependency>
<groupId>com.clickhouse</groupId>
<artifactId>clickhouse-http-client</artifactId>
<version>0.3.2-patch7</version>
<version>0.3.3</version>
</dependency>
```

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-patch7</version>
<version>0.3.3</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion examples/grpc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<clickhouse-grpc.version>0.3.2-patch7</clickhouse-grpc.version>
<clickhouse-grpc.version>0.3.3</clickhouse-grpc.version>

<compiler-plugin.version>3.8.1</compiler-plugin.version>

Expand Down
2 changes: 1 addition & 1 deletion examples/jdbc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<clickhouse-jdbc.version>0.3.2-patch7</clickhouse-jdbc.version>
<clickhouse-jdbc.version>0.3.3</clickhouse-jdbc.version>

<compiler-plugin.version>3.8.1</compiler-plugin.version>

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
</distributionManagement>

<properties>
<revision>0.3.2-SNAPSHOT</revision>
<revision>0.3.3-SNAPSHOT</revision>
<project.current.year>2022</project.current.year>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
Expand Down Expand Up @@ -131,7 +131,7 @@
<sonar.moduleKey>${project.artifactId}</sonar.moduleKey>
<sonar.organization>clickhouse</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
<sonar.projectVersion>0.3.2</sonar.projectVersion>
<sonar.projectVersion>0.3.3</sonar.projectVersion>
</properties>

<dependencyManagement>
Expand Down

0 comments on commit 30814bf

Please sign in to comment.