Skip to content

Commit

Permalink
Bump version to 1.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Donnerbart committed Dec 3, 2024
1 parent 6420427 commit 2805b68
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">
<img src="https://www.hivemq.com/img/svg/hivemq-mqtt-client.svg" width="500">
<img src="https://www.hivemq.com/img/svg/hivemq-mqtt-client.svg" width="500" alt="HiveMQ MQTT Client">
</p>

# HiveMQ MQTT Client
Expand Down Expand Up @@ -99,18 +99,18 @@ If you use Gradle, just include the following inside your `build.gradle(.kts)` f

```groovy
dependencies {
implementation("com.hivemq:hivemq-mqtt-client:1.3.0")
implementation("com.hivemq:hivemq-mqtt-client:1.3.4")
}
```

For optional features you can choose to include additional modules:

```groovy
dependencies {
implementation(platform("com.hivemq:hivemq-mqtt-client-websocket:1.3.0"))
implementation(platform("com.hivemq:hivemq-mqtt-client-proxy:1.3.0"))
implementation(platform("com.hivemq:hivemq-mqtt-client-epoll:1.3.0"))
implementation("com.hivemq:hivemq-mqtt-client-reactor:1.3.0")
implementation(platform("com.hivemq:hivemq-mqtt-client-websocket:1.3.4"))
implementation(platform("com.hivemq:hivemq-mqtt-client-proxy:1.3.4"))
implementation(platform("com.hivemq:hivemq-mqtt-client-epoll:1.3.4"))
implementation("com.hivemq:hivemq-mqtt-client-reactor:1.3.4")
}
```

Expand All @@ -125,7 +125,7 @@ If you use Maven, just include the following inside your `pom.xml` file.
<dependency>
<groupId>com.hivemq</groupId>
<artifactId>hivemq-mqtt-client</artifactId>
<version>1.3.0</version>
<version>1.3.4</version>
</dependency>
</dependencies>
...
Expand Down Expand Up @@ -154,31 +154,31 @@ For optional features you can choose to include additional modules:
<dependency>
<groupId>com.hivemq</groupId>
<artifactId>hivemq-mqtt-client-websocket</artifactId>
<version>1.3.0</version>
<version>1.3.4</version>
<type>pom</type>
</dependency>
</dependencies>
<dependencies>
<dependency>
<groupId>com.hivemq</groupId>
<artifactId>hivemq-mqtt-client-proxy</artifactId>
<version>1.3.0</version>
<version>1.3.4</version>
<type>pom</type>
</dependency>
</dependencies>
<dependencies>
<dependency>
<groupId>com.hivemq</groupId>
<artifactId>hivemq-mqtt-client-epoll</artifactId>
<version>1.3.0</version>
<version>1.3.4</version>
<type>pom</type>
</dependency>
</dependencies>
<dependencies>
<dependency>
<groupId>com.hivemq</groupId>
<artifactId>hivemq-mqtt-client-reactor</artifactId>
<version>1.3.0</version>
<version>1.3.4</version>
</dependency>
</dependencies>
...
Expand All @@ -196,7 +196,7 @@ To use the shaded version just append `-shaded` to the artifact name.

```groovy
dependencies {
implementation("com.hivemq:hivemq-mqtt-client-shaded:1.3.0")
implementation("com.hivemq:hivemq-mqtt-client-shaded:1.3.4")
}
```

Expand All @@ -209,7 +209,7 @@ dependencies {
<dependency>
<groupId>com.hivemq</groupId>
<artifactId>hivemq-mqtt-client-shaded</artifactId>
<version>1.3.0</version>
<version>1.3.4</version>
</dependency>
</dependencies>
...
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
version=1.3.3
prevVersion=1.3.2
version=1.3.4
prevVersion=1.3.3
#
# main dependencies
#
Expand Down

0 comments on commit 2805b68

Please sign in to comment.