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]
31
31
<dependency >
32
32
<groupId >com.clickhouse</groupId >
33
33
<artifactId >client-v2</artifactId >
34
- <version >0.8.1 </version >
34
+ <version >0.8.2 </version >
35
35
</dependency >
36
36
```
37
37
@@ -40,14 +40,14 @@ If you're looking for a prior version of the java client docs, please see [here]
40
40
41
41
``` kotlin
42
42
// 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 " )
44
44
```
45
45
</TabItem >
46
46
<TabItem value =" gradle " label =" Gradle " >
47
47
48
48
``` groovy
49
49
// 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 '
51
51
```
52
52
53
53
</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,
49
49
<dependency >
50
50
<groupId >com.clickhouse</groupId >
51
51
<artifactId >clickhouse-jdbc</artifactId >
52
- <version >0.8.1 </version >
52
+ <version >0.8.2 </version >
53
53
<classifier >shaded-all</classifier >
54
54
</dependency >
55
55
```
@@ -59,14 +59,14 @@ In 0.8 we tried to make the driver more strictly follow the JDBC specification,
59
59
60
60
``` kotlin
61
61
// 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" )
63
63
```
64
64
</TabItem >
65
65
<TabItem value =" gradle " label =" Gradle " >
66
66
67
67
``` groovy
68
68
// 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'
70
70
```
71
71
72
72
</TabItem >
@@ -235,4 +235,4 @@ After Setting those settings, you need to ensure that your client enables the Ke
235
235
236
236
```java
237
237
properties.setProperty("socket_keepalive", "true");
238
- ```
238
+ ```
You can’t perform that action at this time.
0 commit comments