From 3080050c4dc32b92aedde1de490da7621d8b1f4b Mon Sep 17 00:00:00 2001 From: andsel Date: Sat, 1 Dec 2018 15:10:34 +0100 Subject: [PATCH] Bumped release 0.12 --- broker/src/main/java/io/moquette/broker/Server.java | 2 +- build.gradle | 4 ++-- distribution/src/main/scripts/moquette.bat | 2 +- distribution/src/main/scripts/moquette.sh | 2 +- tools_scripts/integration/brokerEmbeddedTest.groovy | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/broker/src/main/java/io/moquette/broker/Server.java b/broker/src/main/java/io/moquette/broker/Server.java index 610e5e3d6..a11c49c73 100644 --- a/broker/src/main/java/io/moquette/broker/Server.java +++ b/broker/src/main/java/io/moquette/broker/Server.java @@ -57,7 +57,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-SNAPSHOT"); + System.out.println("Server started, version 0.12"); //Bind a shutdown hook Runtime.getRuntime().addShutdownHook(new Thread(server::stopServer)); } diff --git a/build.gradle b/build.gradle index ef290c89c..b6f83855d 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ allprojects { apply plugin: 'maven-publish' group = 'io.moquette' - version = '0.12-SNAPSHOT' + version = '0.12' } buildscript { @@ -92,7 +92,7 @@ subprojects { from components.java groupId "$project.group" artifactId "${project.name}" - version '0.12-SNAPSHOT' + version '0.12' } } } diff --git a/distribution/src/main/scripts/moquette.bat b/distribution/src/main/scripts/moquette.bat index 93789e421..b9ed6d630 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-SNAPSHOT " +echo " version: 0.12 " 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 68938c053..dcf8023b9 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-SNAPSHOT " +echo " version: 0.12 " cd "$(dirname "$0")" diff --git a/tools_scripts/integration/brokerEmbeddedTest.groovy b/tools_scripts/integration/brokerEmbeddedTest.groovy index 73c8737b8..87aeae392 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-SNAPSHOT') +@Grab(group='io.moquette', module='moquette-broker', version='0.12') import io.moquette.server.Server