Skip to content

Commit e0af002

Browse files
committed
chore(release): release version 1.11.0 [skip ci]
1 parent efc081d commit e0af002

File tree

8 files changed

+19
-19
lines changed

8 files changed

+19
-19
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 1.11.0 [unreleased]
1+
## 1.11.0 [2020-08-14]
22

33
### Features
44
1. [#139](https://github.com/influxdata/influxdb-client-java/pull/139): Marked Apis as @ThreadSafe

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -91,15 +91,15 @@ Download the latest version:
9191
<dependency>
9292
<groupId>com.influxdb</groupId>
9393
<artifactId>influxdb-client-java</artifactId>
94-
<version>1.10.0</version>
94+
<version>1.11.0</version>
9595
</dependency>
9696
```
9797
9898
##### Or when using Gradle:
9999

100100
```groovy
101101
dependencies {
102-
compile "com.influxdb:influxdb-client-java:1.10.0"
102+
compile "com.influxdb:influxdb-client-java:1.11.0"
103103
}
104104
```
105105

@@ -208,15 +208,15 @@ Download the latest version:
208208
<dependency>
209209
<groupId>com.influxdb</groupId>
210210
<artifactId>influxdb-client-java</artifactId>
211-
<version>1.10.0</version>
211+
<version>1.11.0</version>
212212
</dependency>
213213
```
214214
215215
##### Or when using Gradle:
216216

217217
```groovy
218218
dependencies {
219-
compile "com.influxdb:influxdb-client-java:1.10.0"
219+
compile "com.influxdb:influxdb-client-java:1.11.0"
220220
}
221221
```
222222

@@ -309,15 +309,15 @@ Download the latest version:
309309
<dependency>
310310
<groupId>com.influxdb</groupId>
311311
<artifactId>influxdb-client-flux</artifactId>
312-
<version>1.10.0</version>
312+
<version>1.11.0</version>
313313
</dependency>
314314
```
315315
316316
##### Or when using Gradle:
317317

318318
```groovy
319319
dependencies {
320-
compile "com.influxdb:influxdb-client-flux:1.10.0"
320+
compile "com.influxdb:influxdb-client-flux:1.11.0"
321321
}
322322
```
323323

client-kotlin/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,14 +206,14 @@ The latest version for Maven dependency:
206206
<dependency>
207207
<groupId>com.influxdb</groupId>
208208
<artifactId>influxdb-client-kotlin</artifactId>
209-
<version>1.10.0</version>
209+
<version>1.11.0</version>
210210
</dependency>
211211
```
212212

213213
Or when using with Gradle:
214214
```groovy
215215
dependencies {
216-
compile "com.influxdb:influxdb-client-kotlin:1.10.0"
216+
compile "com.influxdb:influxdb-client-kotlin:1.11.0"
217217
}
218218
```
219219

client-legacy/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,14 +153,14 @@ The latest version for Maven dependency:
153153
<dependency>
154154
<groupId>com.influxdb</groupId>
155155
<artifactId>influxdb-client-flux</artifactId>
156-
<version>1.10.0</version>
156+
<version>1.11.0</version>
157157
</dependency>
158158
```
159159

160160
Or when using with Gradle:
161161
```groovy
162162
dependencies {
163-
compile "com.influxdb:influxdb-client-flux:1.10.0"
163+
compile "com.influxdb:influxdb-client-flux:1.11.0"
164164
}
165165
```
166166

client-reactive/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -390,14 +390,14 @@ The latest version for Maven dependency:
390390
<dependency>
391391
<groupId>com.influxdb</groupId>
392392
<artifactId>influxdb-client-reactive</artifactId>
393-
<version>1.10.0</version>
393+
<version>1.11.0</version>
394394
</dependency>
395395
```
396396

397397
Or when using with Gradle:
398398
```groovy
399399
dependencies {
400-
compile "com.influxdb:influxdb-client-reactive:1.10.0"
400+
compile "com.influxdb:influxdb-client-reactive:1.11.0"
401401
}
402402
```
403403

client-scala/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,14 +249,14 @@ The latest version for Maven dependency:
249249
<dependency>
250250
<groupId>com.influxdb</groupId>
251251
<artifactId>influxdb-client-scala</artifactId>
252-
<version>1.10.0</version>
252+
<version>1.11.0</version>
253253
</dependency>
254254
```
255255

256256
Or when using with Gradle:
257257
```groovy
258258
dependencies {
259-
compile "com.influxdb:influxdb-client-scala:1.10.0"
259+
compile "com.influxdb:influxdb-client-scala:1.11.0"
260260
}
261261
```
262262

client/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -990,14 +990,14 @@ The latest version for Maven dependency:
990990
<dependency>
991991
<groupId>com.influxdb</groupId>
992992
<artifactId>influxdb-client-java</artifactId>
993-
<version>1.10.0</version>
993+
<version>1.11.0</version>
994994
</dependency>
995995
```
996996

997997
Or when using with Gradle:
998998
```groovy
999999
dependencies {
1000-
compile "com.influxdb:influxdb-client-java:1.10.0"
1000+
compile "com.influxdb:influxdb-client-java:1.11.0"
10011001
}
10021002
```
10031003

spring/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,14 +86,14 @@ The latest version for Maven dependency:
8686
<dependency>
8787
<groupId>com.influxdb</groupId>
8888
<artifactId>influxdb-spring</artifactId>
89-
<version>1.10.0</version>
89+
<version>1.11.0</version>
9090
</dependency>
9191
```
9292

9393
Or when using with Gradle:
9494
```groovy
9595
dependencies {
96-
compile "com.influxdb:influxdb-spring:1.10.0"
96+
compile "com.influxdb:influxdb-spring:1.11.0"
9797
}
9898
```
9999

0 commit comments

Comments
 (0)