@@ -101,18 +101,18 @@ If you use Gradle, just include the following inside your `build.gradle(.kts)` f
101101
102102``` groovy
103103dependencies {
104- implementation("com.hivemq:hivemq-mqtt-client:1.2.2 ")
104+ implementation("com.hivemq:hivemq-mqtt-client:1.3.0 ")
105105}
106106```
107107
108108For optional features you can choose to include additional modules:
109109
110110``` groovy
111111dependencies {
112- implementation(platform("com.hivemq:hivemq-mqtt-client-websocket:1.2.2 "))
113- implementation(platform("com.hivemq:hivemq-mqtt-client-proxy:1.2.2 "))
114- implementation(platform("com.hivemq:hivemq-mqtt-client-epoll:1.2.2 "))
115- implementation("com.hivemq:hivemq-mqtt-client-reactor:1.2.2 ")
112+ implementation(platform("com.hivemq:hivemq-mqtt-client-websocket:1.3.0 "))
113+ implementation(platform("com.hivemq:hivemq-mqtt-client-proxy:1.3.0 "))
114+ implementation(platform("com.hivemq:hivemq-mqtt-client-epoll:1.3.0 "))
115+ implementation("com.hivemq:hivemq-mqtt-client-reactor:1.3.0 ")
116116}
117117```
118118
@@ -127,7 +127,7 @@ If you use Maven, just include the following inside your `pom.xml` file.
127127 <dependency >
128128 <groupId >com.hivemq</groupId >
129129 <artifactId >hivemq-mqtt-client</artifactId >
130- <version >1.2.2 </version >
130+ <version >1.3.0 </version >
131131 </dependency >
132132 </dependencies >
133133 ...
@@ -156,31 +156,31 @@ For optional features you can choose to include additional modules:
156156 <dependency >
157157 <groupId >com.hivemq</groupId >
158158 <artifactId >hivemq-mqtt-client-websocket</artifactId >
159- <version >1.2.2 </version >
159+ <version >1.3.0 </version >
160160 <type >pom</type >
161161 </dependency >
162162 </dependencies >
163163 <dependencies >
164164 <dependency >
165165 <groupId >com.hivemq</groupId >
166166 <artifactId >hivemq-mqtt-client-proxy</artifactId >
167- <version >1.2.2 </version >
167+ <version >1.3.0 </version >
168168 <type >pom</type >
169169 </dependency >
170170 </dependencies >
171171 <dependencies >
172172 <dependency >
173173 <groupId >com.hivemq</groupId >
174174 <artifactId >hivemq-mqtt-client-epoll</artifactId >
175- <version >1.2.2 </version >
175+ <version >1.3.0 </version >
176176 <type >pom</type >
177177 </dependency >
178178 </dependencies >
179179 <dependencies >
180180 <dependency >
181181 <groupId >com.hivemq</groupId >
182182 <artifactId >hivemq-mqtt-client-reactor</artifactId >
183- <version >1.2.2 </version >
183+ <version >1.3.0 </version >
184184 </dependency >
185185 </dependencies >
186186 ...
@@ -198,7 +198,7 @@ To use the shaded version just append `-shaded` to the artifact name.
198198
199199``` groovy
200200dependencies {
201- implementation("com.hivemq:hivemq-mqtt-client-shaded:1.2.2 ")
201+ implementation("com.hivemq:hivemq-mqtt-client-shaded:1.3.0 ")
202202}
203203```
204204
@@ -211,7 +211,7 @@ dependencies {
211211 <dependency >
212212 <groupId >com.hivemq</groupId >
213213 <artifactId >hivemq-mqtt-client-shaded</artifactId >
214- <version >1.2.2 </version >
214+ <version >1.3.0 </version >
215215 </dependency >
216216 </dependencies >
217217 ...
0 commit comments