Skip to content

Commit 70c56fd

Browse files
committed
Updated version to 1.1.2
1 parent 1aa447f commit 70c56fd

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ If you use Gradle, just include the following inside your `build.gradle` file.
4747

4848
```groovy
4949
dependencies {
50-
compile group: 'com.hivemq', name: 'hivemq-mqtt-client', version: '1.1.1'
50+
compile group: 'com.hivemq', name: 'hivemq-mqtt-client', version: '1.1.2'
5151
}
5252
```
5353

@@ -69,7 +69,7 @@ NOTE: You have to set the compiler version to `1.8` or higher.
6969
<dependency>
7070
<groupId>com.hivemq</groupId>
7171
<artifactId>hivemq-mqtt-client</artifactId>
72-
<version>1.1.1</version>
72+
<version>1.1.2</version>
7373
</dependency>
7474
</dependencies>
7575
...
@@ -86,7 +86,7 @@ To use the shaded version just append `-shaded` to the artifact name.
8686

8787
```groovy
8888
dependencies {
89-
compile group: 'com.hivemq', name: 'hivemq-mqtt-client-shaded', version: '1.1.1'
89+
compile group: 'com.hivemq', name: 'hivemq-mqtt-client-shaded', version: '1.1.2'
9090
}
9191
```
9292

@@ -99,7 +99,7 @@ dependencies {
9999
<dependency>
100100
<groupId>com.hivemq</groupId>
101101
<artifactId>hivemq-mqtt-client-shaded</artifactId>
102-
<version>1.1.1</version>
102+
<version>1.1.2</version>
103103
</dependency>
104104
</dependencies>
105105
...

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ plugins {
2323
}
2424

2525
group 'com.hivemq'
26-
version '1.1.1' + (Boolean.valueOf(System.getProperty("snapshot")) ? "-SNAPSHOT" : "")
26+
version '1.1.2' + (Boolean.valueOf(System.getProperty("snapshot")) ? "-SNAPSHOT" : "")
2727
description 'HiveMQ MQTT Client is a MQTT 5.0 and MQTT 3.1.1 compatible and feature-rich high-performance Java client ' +
2828
'library with different API flavours and backpressure support'
2929

@@ -41,7 +41,7 @@ ext {
4141
licenseReadableName = 'The Apache License, Version 2.0'
4242
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
4343
shadedAppendix = 'shaded'
44-
prevVersion = '1.1.0'
44+
prevVersion = '1.1.1'
4545
}
4646

4747
sourceCompatibility = 1.8

0 commit comments

Comments
 (0)