@@ -99,18 +99,18 @@ If you use Gradle, just include the following inside your `build.gradle(.kts)` f
9999
100100``` groovy
101101dependencies {
102- implementation("com.hivemq:hivemq-mqtt-client:1.3.4 ")
102+ implementation("com.hivemq:hivemq-mqtt-client:1.3.5 ")
103103}
104104```
105105
106106For optional features you can choose to include additional modules:
107107
108108``` groovy
109109dependencies {
110- implementation(platform("com.hivemq:hivemq-mqtt-client-websocket:1.3.4 "))
111- implementation(platform("com.hivemq:hivemq-mqtt-client-proxy:1.3.4 "))
112- implementation(platform("com.hivemq:hivemq-mqtt-client-epoll:1.3.4 "))
113- implementation("com.hivemq:hivemq-mqtt-client-reactor:1.3.4 ")
110+ implementation(platform("com.hivemq:hivemq-mqtt-client-websocket:1.3.5 "))
111+ implementation(platform("com.hivemq:hivemq-mqtt-client-proxy:1.3.5 "))
112+ implementation(platform("com.hivemq:hivemq-mqtt-client-epoll:1.3.5 "))
113+ implementation("com.hivemq:hivemq-mqtt-client-reactor:1.3.5 ")
114114}
115115```
116116
@@ -125,7 +125,7 @@ If you use Maven, just include the following inside your `pom.xml` file.
125125 <dependency >
126126 <groupId >com.hivemq</groupId >
127127 <artifactId >hivemq-mqtt-client</artifactId >
128- <version >1.3.4 </version >
128+ <version >1.3.5 </version >
129129 </dependency >
130130 </dependencies >
131131 ...
@@ -154,31 +154,31 @@ For optional features you can choose to include additional modules:
154154 <dependency >
155155 <groupId >com.hivemq</groupId >
156156 <artifactId >hivemq-mqtt-client-websocket</artifactId >
157- <version >1.3.4 </version >
157+ <version >1.3.5 </version >
158158 <type >pom</type >
159159 </dependency >
160160 </dependencies >
161161 <dependencies >
162162 <dependency >
163163 <groupId >com.hivemq</groupId >
164164 <artifactId >hivemq-mqtt-client-proxy</artifactId >
165- <version >1.3.4 </version >
165+ <version >1.3.5 </version >
166166 <type >pom</type >
167167 </dependency >
168168 </dependencies >
169169 <dependencies >
170170 <dependency >
171171 <groupId >com.hivemq</groupId >
172172 <artifactId >hivemq-mqtt-client-epoll</artifactId >
173- <version >1.3.4 </version >
173+ <version >1.3.5 </version >
174174 <type >pom</type >
175175 </dependency >
176176 </dependencies >
177177 <dependencies >
178178 <dependency >
179179 <groupId >com.hivemq</groupId >
180180 <artifactId >hivemq-mqtt-client-reactor</artifactId >
181- <version >1.3.4 </version >
181+ <version >1.3.5 </version >
182182 </dependency >
183183 </dependencies >
184184 ...
@@ -196,7 +196,7 @@ To use the shaded version just append `-shaded` to the artifact name.
196196
197197``` groovy
198198dependencies {
199- implementation("com.hivemq:hivemq-mqtt-client-shaded:1.3.4 ")
199+ implementation("com.hivemq:hivemq-mqtt-client-shaded:1.3.5 ")
200200}
201201```
202202
@@ -209,7 +209,7 @@ dependencies {
209209 <dependency >
210210 <groupId >com.hivemq</groupId >
211211 <artifactId >hivemq-mqtt-client-shaded</artifactId >
212- <version >1.3.4 </version >
212+ <version >1.3.5 </version >
213213 </dependency >
214214 </dependencies >
215215 ...
0 commit comments