Skip to content

Commit

Permalink
Bumped version 0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
andsel committed Jan 6, 2023
1 parent bb3880c commit 93222ba
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion ChangeLog.txt
@@ -1,4 +1,4 @@
Version 0.16-SNAPSHOT:
Version 0.16:
[build] drop generation of broker-test, removed distribution and embedding_moquette modules from deploy phase (#616)
[fix] introduces sessions event processors to segregate changes to a session in one single thread, simplifying concurrency and code (#631)
[util] add collection of telemetry data (#700)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -53,6 +53,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.16-SNAPSHOT-bundle.tar.gz`
package is present at `distribution/target/distribution-0.16-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
Expand Up @@ -5,7 +5,7 @@
<relativePath>../pom.xml</relativePath>
<artifactId>moquette-parent</artifactId>
<groupId>io.moquette</groupId>
<version>0.16-SNAPSHOT</version>
<version>0.16</version>
</parent>

<artifactId>moquette-broker</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion broker/src/main/java/io/moquette/broker/Server.java
Expand Up @@ -66,7 +66,7 @@
public class Server {

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

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

<artifactId>distribution</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion distribution/src/main/scripts/moquette.sh
Expand Up @@ -13,7 +13,7 @@ echo " \_| |_/\___/ \__, |\__,_|\___|\__|\__\___| \_| |_/\_/\_\ \_/ \_/ "
echo " | | "
echo " |_| "
echo " "
echo " version: 0.16-SNAPSHOT "
echo " version: 0.16 "


cd "$(dirname "$0")"
Expand Down
2 changes: 1 addition & 1 deletion embedding_moquette/pom.xml
Expand Up @@ -5,7 +5,7 @@
<relativePath>../pom.xml</relativePath>
<artifactId>moquette-parent</artifactId>
<groupId>io.moquette</groupId>
<version>0.16-SNAPSHOT</version>
<version>0.16</version>
</parent>

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

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

0 comments on commit 93222ba

Please sign in to comment.