Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump 0.19-SNAPSHOT dev cycle #887

Merged
merged 1 commit into from
Dec 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading