Skip to content

Commit

Permalink
Bump 0.19-SNAPSHOT dev cycle (#887)
Browse files Browse the repository at this point in the history
  • Loading branch information
andsel authored Dec 27, 2024
1 parent d6cb664 commit 95dc3d1
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 9 deletions.
5 changes: 4 additions & 1 deletion ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
Version 0.18-SNAPSHOT:
Version 0.19-SNAPSHOT

Version 0.18:
[fix] Update Netty to 4.1.116 and H2 2.1.214
[feature] Server keep alive: added configuration setting so that the broker can specify a keep alive other then the one selected by clients. (#789)
[feature] User properties: covered publish with user properties with tests and fixed publish of will messages. (#877)
[feature] Topic alias: implemented handling of topic alias received by publishers. (#873)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ Include dependency in your project:
## Build from sources

After a git clone of the repository, cd into the cloned sources and: `./gradlew package`, at the end the distribution
package is present at `distribution/target/distribution-0.18-SNAPSHOT-bundle.tar.gz`
package is present at `distribution/target/distribution-0.19-SNAPSHOT-bundle.tar.gz`

In distribution/target directory will be produced the selfcontained file for the broker with all dependencies and a running script.
2 changes: 1 addition & 1 deletion broker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<relativePath>../pom.xml</relativePath>
<artifactId>moquette-parent</artifactId>
<groupId>io.moquette</groupId>
<version>0.18-SNAPSHOT</version>
<version>0.19-SNAPSHOT</version>
</parent>

<artifactId>moquette-broker</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion broker/src/main/java/io/moquette/broker/Server.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
public class Server {

private static final Logger LOG = LoggerFactory.getLogger(io.moquette.broker.Server.class);
public static final String MOQUETTE_VERSION = "0.18-SNAPSHOT";
public static final String MOQUETTE_VERSION = "0.19-SNAPSHOT";

private ScheduledExecutorService scheduler;
private NewNettyAcceptor acceptor;
Expand Down
2 changes: 1 addition & 1 deletion distribution/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<relativePath>../pom.xml</relativePath>
<artifactId>moquette-parent</artifactId>
<groupId>io.moquette</groupId>
<version>0.18-SNAPSHOT</version>
<version>0.19-SNAPSHOT</version>
</parent>

<artifactId>distribution</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion distribution/src/main/scripts/moquette.bat
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ echo " \_| |_/\___/ \__, |\__,_|\___|\__|\__\___| \_| |_/\_/\_\ \_/ \_/ "
echo " | | "
echo " |_| "
echo " "
echo " version: 0.18-SNAPSHOT "
echo " version: 0.19-SNAPSHOT "

set "CURRENT_DIR=%cd%"
if not "%MOQUETTE_HOME%" == "" goto gotHome
Expand Down
2 changes: 1 addition & 1 deletion distribution/src/main/scripts/moquette.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ echo " \_| |_/\___/ \__, |\__,_|\___|\__|\__\___| \_| |_/\_/\_\ \_/ \_/ "
echo " | | "
echo " |_| "
echo " "
echo " version: 0.18-SNAPSHOT "
echo " version: 0.19-SNAPSHOT "


unset CDPATH
Expand Down
2 changes: 1 addition & 1 deletion embedding_moquette/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<relativePath>../pom.xml</relativePath>
<artifactId>moquette-parent</artifactId>
<groupId>io.moquette</groupId>
<version>0.18-SNAPSHOT</version>
<version>0.19-SNAPSHOT</version>
</parent>

<artifactId>embedded_test</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<artifactId>moquette-parent</artifactId>

<packaging>pom</packaging>
<version>0.18-SNAPSHOT</version>
<version>0.19-SNAPSHOT</version>
<name>Moquette MQTT</name>
<description>Moquette lightweight MQTT Broker</description>
<inceptionYear>2011</inceptionYear>
Expand Down

0 comments on commit 95dc3d1

Please sign in to comment.