Skip to content

Commit

Permalink
Bump version to 0.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
davidepianca98 committed Sep 20, 2023
1 parent edcacdf commit ef25a74
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ kotlin {
sourceSets {
commonMain {
dependencies {
implementation("com.github.davidepianca98:kmqtt-common:0.4.2")
implementation("com.github.davidepianca98:kmqtt-client:0.4.2")
implementation("com.github.davidepianca98:kmqtt-common:0.4.3")
implementation("com.github.davidepianca98:kmqtt-client:0.4.3")
}
}
}
Expand All @@ -106,8 +106,8 @@ repositories {
}
}
dependencies {
implementation("com.github.davidepianca98:kmqtt-common-jvm:0.4.2")
implementation("com.github.davidepianca98:kmqtt-client-jvm:0.4.2")
implementation("com.github.davidepianca98:kmqtt-common-jvm:0.4.3")
implementation("com.github.davidepianca98:kmqtt-client-jvm:0.4.3")
}
```

Expand All @@ -120,7 +120,7 @@ This code starts the MQTT client on port 1883 without TLS encryption. You can pl
```kotlin
fun main() {
val client = MQTTClient(
5,
MQTTVersion.MQTT5,
"test.mosquitto.org",
1883,
null
Expand All @@ -138,7 +138,7 @@ The certificates and key must be in PEM format, the password can be null
```kotlin
fun main() {
val client = MQTTClient(
5,
MQTTVersion.MQTT5,
"test.mosquitto.org",
8883,
TLSClientSettings(
Expand Down Expand Up @@ -208,8 +208,8 @@ kotlin {
sourceSets {
commonMain {
dependencies {
implementation("com.github.davidepianca98:kmqtt-common:0.4.2")
implementation("com.github.davidepianca98:kmqtt-broker:0.4.2")
implementation("com.github.davidepianca98:kmqtt-common:0.4.3")
implementation("com.github.davidepianca98:kmqtt-broker:0.4.3")
}
}
}
Expand All @@ -228,8 +228,8 @@ repositories {
}
}
dependencies {
implementation("com.github.davidepianca98:kmqtt-common-jvm:0.4.2")
implementation("com.github.davidepianca98:kmqtt-broker-jvm:0.4.2")
implementation("com.github.davidepianca98:kmqtt-common-jvm:0.4.3")
implementation("com.github.davidepianca98:kmqtt-broker-jvm:0.4.3")
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ plugins {

subprojects {
group = "com.github.davidepianca98"
version = "0.4.2"
version = "0.4.3"
}
2 changes: 1 addition & 1 deletion kmqtt-broker/docker/cluster/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM openjdk:11-jre-slim

ENV JAVA_TOOL_OPTIONS -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:8000
COPY build/libs/kmqtt-0.4.2.jar kmqtt.jar
COPY build/libs/kmqtt-0.4.3.jar kmqtt.jar
EXPOSE 1883
EXPOSE 22222
EXPOSE 22223
Expand Down

0 comments on commit ef25a74

Please sign in to comment.