Skip to content

Commit

Permalink
Bump version to 0.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
davidepianca98 committed Jan 21, 2024
1 parent a83b1f9 commit 8bb2fd1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ kotlin {
sourceSets {
commonMain {
dependencies {
implementation("io.github.davidepianca98:kmqtt-common:0.4.3")
implementation("io.github.davidepianca98:kmqtt-client:0.4.3")
implementation("io.github.davidepianca98:kmqtt-common:0.4.4")
implementation("io.github.davidepianca98:kmqtt-client:0.4.4")
}
}
}
Expand All @@ -83,8 +83,8 @@ repositories {
mavenCentral()
}
dependencies {
implementation("io.github.davidepianca98:kmqtt-common-jvm:0.4.3")
implementation("io.github.davidepianca98:kmqtt-client-jvm:0.4.3")
implementation("io.github.davidepianca98:kmqtt-common-jvm:0.4.4")
implementation("io.github.davidepianca98:kmqtt-client-jvm:0.4.4")
}
```

Expand Down Expand Up @@ -166,8 +166,8 @@ kotlin {
sourceSets {
commonMain {
dependencies {
implementation("io.github.davidepianca98:kmqtt-common:0.4.3")
implementation("io.github.davidepianca98:kmqtt-broker:0.4.3")
implementation("io.github.davidepianca98:kmqtt-common:0.4.4")
implementation("io.github.davidepianca98:kmqtt-broker:0.4.4")
}
}
}
Expand All @@ -180,8 +180,8 @@ repositories {
mavenCentral()
}
dependencies {
implementation("io.github.davidepianca98:kmqtt-common-jvm:0.4.3")
implementation("io.github.davidepianca98:kmqtt-broker-jvm:0.4.3")
implementation("io.github.davidepianca98:kmqtt-common-jvm:0.4.4")
implementation("io.github.davidepianca98:kmqtt-broker-jvm:0.4.4")
}
```

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

subprojects {
group = "io.github.davidepianca98"
version = "0.4.3"
version = "0.4.4"
}
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.3.jar kmqtt.jar
COPY build/libs/kmqtt-0.4.4.jar kmqtt.jar
EXPOSE 1883
EXPOSE 22222
EXPOSE 22223
Expand Down

0 comments on commit 8bb2fd1

Please sign in to comment.