File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
docs/integrations/language-clients/java Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ If you're looking for a prior version of the java client docs, please see [here]
3131<dependency >
3232 <groupId >com.clickhouse</groupId >
3333 <artifactId >client-v2</artifactId >
34- <version >0.8.1 </version >
34+ <version >0.8.2 </version >
3535</dependency >
3636```
3737
@@ -40,14 +40,14 @@ If you're looking for a prior version of the java client docs, please see [here]
4040
4141``` kotlin
4242// https://mvnrepository.com/artifact/com.clickhouse/client-v2
43- implementation(" com.clickhouse:client-v2:0.8.1 " )
43+ implementation(" com.clickhouse:client-v2:0.8.2 " )
4444```
4545</TabItem >
4646<TabItem value =" gradle " label =" Gradle " >
4747
4848``` groovy
4949// https://mvnrepository.com/artifact/com.clickhouse/client-v2
50- implementation 'com.clickhouse:client-v2:0.8.1 '
50+ implementation 'com.clickhouse:client-v2:0.8.2 '
5151```
5252
5353</TabItem >
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ In 0.8 we tried to make the driver more strictly follow the JDBC specification,
4949<dependency >
5050 <groupId >com.clickhouse</groupId >
5151 <artifactId >clickhouse-jdbc</artifactId >
52- <version >0.8.1 </version >
52+ <version >0.8.2 </version >
5353 <classifier >shaded-all</classifier >
5454</dependency >
5555```
@@ -59,14 +59,14 @@ In 0.8 we tried to make the driver more strictly follow the JDBC specification,
5959
6060``` kotlin
6161// https://mvnrepository.com/artifact/com.clickhouse/clickhouse-jdbc
62- implementation(" com.clickhouse:clickhouse-jdbc:0.8.1 :shaded-all" )
62+ implementation(" com.clickhouse:clickhouse-jdbc:0.8.2 :shaded-all" )
6363```
6464</TabItem >
6565<TabItem value =" gradle " label =" Gradle " >
6666
6767``` groovy
6868// https://mvnrepository.com/artifact/com.clickhouse/clickhouse-jdbc
69- implementation 'com.clickhouse:clickhouse-jdbc:0.8.1 :shaded-all'
69+ implementation 'com.clickhouse:clickhouse-jdbc:0.8.2 :shaded-all'
7070```
7171
7272</TabItem >
@@ -235,4 +235,4 @@ After Setting those settings, you need to ensure that your client enables the Ke
235235
236236```java
237237properties.setProperty("socket_keepalive", "true");
238- ```
238+ ```
You can’t perform that action at this time.
0 commit comments