Skip to content

Commit

Permalink
Bumped release 0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
andsel committed Dec 1, 2018
1 parent 2138513 commit 3080050
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion broker/src/main/java/io/moquette/broker/Server.java
Expand Up @@ -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));
}
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Expand Up @@ -3,7 +3,7 @@ allprojects {
apply plugin: 'maven-publish'

group = 'io.moquette'
version = '0.12-SNAPSHOT'
version = '0.12'
}

buildscript {
Expand Down Expand Up @@ -92,7 +92,7 @@ subprojects {
from components.java
groupId "$project.group"
artifactId "${project.name}"
version '0.12-SNAPSHOT'
version '0.12'
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion distribution/src/main/scripts/moquette.bat
Expand Up @@ -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
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.12-SNAPSHOT "
echo " version: 0.12 "


cd "$(dirname "$0")"
Expand Down
2 changes: 1 addition & 1 deletion 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

Expand Down

0 comments on commit 3080050

Please sign in to comment.