Skip to content

Commit

Permalink
Bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
zhicwu committed Feb 3, 2022
1 parent 1f83b42 commit 1b89743
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
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-patch3</version>
<version>0.3.2-patch4</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-patch3</version>
<version>0.3.2-patch4</version>
<!-- below is only needed when all you want is a shaded jar -->
<classifier>http</classifier>
<exclusions>
Expand Down
4 changes: 2 additions & 2 deletions clickhouse-benchmark/pom.xml
Expand Up @@ -17,9 +17,9 @@

<properties>
<clickhouse4j-driver.version>1.4.4</clickhouse4j-driver.version>
<native-driver.version>2.6.3</native-driver.version>
<native-driver.version>2.6.4</native-driver.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jmh.version>1.33</jmh.version>
<jmh.version>1.34</jmh.version>
<shade.name>benchmarks</shade.name>
</properties>

Expand Down
2 changes: 1 addition & 1 deletion clickhouse-client/README.md
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-patch3</version>
<version>0.3.2-patch4</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion clickhouse-jdbc/README.md
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-patch3</version>
<version>0.3.2-patch4</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion examples/grpc/pom.xml
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-patch3</clickhouse-grpc.version>
<clickhouse-grpc.version>0.3.2-patch4</clickhouse-grpc.version>

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

Expand Down
2 changes: 1 addition & 1 deletion examples/jdbc/pom.xml
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-patch3</clickhouse-jdbc.version>
<clickhouse-jdbc.version>0.3.2-patch4</clickhouse-jdbc.version>

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

Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Expand Up @@ -92,12 +92,12 @@
<slf4j.version>2.0.0-alpha5</slf4j.version>
<mockito.version>3.12.4</mockito.version>
<wiremock.version>2.32.0</wiremock.version>
<testcontainers.version>1.16.2</testcontainers.version>
<testcontainers.version>1.16.3</testcontainers.version>
<testng.version>7.4.0</testng.version>

<mariadb-driver.version>2.7.4</mariadb-driver.version>
<mysql-driver.version>8.0.27</mysql-driver.version>
<postgresql-driver.version>42.3.1</postgresql-driver.version>
<mariadb-driver.version>3.0.3</mariadb-driver.version>
<mysql-driver.version>8.0.28</mysql-driver.version>
<postgresql-driver.version>42.3.2</postgresql-driver.version>

<repackaged.version>1.1.1</repackaged.version>

Expand Down

0 comments on commit 1b89743

Please sign in to comment.