diff --git a/broker/src/main/java/io/moquette/broker/Server.java b/broker/src/main/java/io/moquette/broker/Server.java index 8f1ec8252..28207aef3 100644 --- a/broker/src/main/java/io/moquette/broker/Server.java +++ b/broker/src/main/java/io/moquette/broker/Server.java @@ -55,7 +55,7 @@ public class Server { public static void main(String[] args) throws IOException { final Server server = new Server(); server.startServer(); - System.out.println("Server started, version 0.12.1-SNAPSHOT"); + System.out.println("Server started, version 0.12.1"); //Bind a shutdown hook Runtime.getRuntime().addShutdownHook(new Thread(server::stopServer)); } diff --git a/build.gradle b/build.gradle index c8630223a..2e34e2299 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ allprojects { apply plugin: 'maven-publish' group = 'io.moquette' - version = '0.12.1-SNAPSHOT' + version = '0.12.1' } buildscript { @@ -92,7 +92,7 @@ subprojects { from components.java groupId "$project.group" artifactId "${project.name}" - version '0.12.1-SNAPSHOT' + version '0.12.1' } } } diff --git a/distribution/src/main/scripts/moquette.bat b/distribution/src/main/scripts/moquette.bat index adfdc49b9..8957a3c65 100644 --- a/distribution/src/main/scripts/moquette.bat +++ b/distribution/src/main/scripts/moquette.bat @@ -13,7 +13,7 @@ echo " \_| |_/\___/ \__, |\__,_|\___|\__|\__\___| \_| |_/\_/\_\ \_/ \_/ " echo " | | " echo " |_| " echo " " -echo " version: 0.12.1-SNAPSHOT " +echo " version: 0.12.1 " set "CURRENT_DIR=%cd%" if not "%MOQUETTE_HOME%" == "" goto gotHome diff --git a/distribution/src/main/scripts/moquette.sh b/distribution/src/main/scripts/moquette.sh index c180b97da..2c1a79a62 100644 --- a/distribution/src/main/scripts/moquette.sh +++ b/distribution/src/main/scripts/moquette.sh @@ -13,7 +13,7 @@ echo " \_| |_/\___/ \__, |\__,_|\___|\__|\__\___| \_| |_/\_/\_\ \_/ \_/ " echo " | | " echo " |_| " echo " " -echo " version: 0.12.1-SNAPSHOT " +echo " version: 0.12.1 " cd "$(dirname "$0")" diff --git a/tools_scripts/integration/brokerEmbeddedTest.groovy b/tools_scripts/integration/brokerEmbeddedTest.groovy index 180cf4320..69897a503 100644 --- a/tools_scripts/integration/brokerEmbeddedTest.groovy +++ b/tools_scripts/integration/brokerEmbeddedTest.groovy @@ -1,5 +1,5 @@ @GrabResolver(name='moquette-bintray', root='http://dl.bintray.com/andsel/maven/') -@Grab(group='io.moquette', module='moquette-broker', version='0.12.1-SNAPSHOT') +@Grab(group='io.moquette', module='moquette-broker', version='0.12.1') import io.moquette.server.Server