Skip to content
This repository was archived by the owner on Apr 12, 2020. It is now read-only.

Commit db4349b

Browse files
committed
Bumped dev cycle 0.13
1 parent f3faee6 commit db4349b

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

broker/src/main/java/io/moquette/broker/Server.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public class Server {
5555
public static void main(String[] args) throws IOException {
5656
final Server server = new Server();
5757
server.startServer();
58-
System.out.println("Server started, version 0.12.1");
58+
System.out.println("Server started, version 0.13-SNAPSHOT");
5959
//Bind a shutdown hook
6060
Runtime.getRuntime().addShutdownHook(new Thread(server::stopServer));
6161
}

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ allprojects {
33
apply plugin: 'maven-publish'
44

55
group = 'io.moquette'
6-
version = '0.12.1'
6+
version = '0.13-SNAPSHOT'
77
}
88

99
buildscript {
@@ -92,7 +92,7 @@ subprojects {
9292
from components.java
9393
groupId "$project.group"
9494
artifactId "${project.name}"
95-
version '0.12.1'
95+
version '0.13-SNAPSHOT'
9696
}
9797
}
9898
}

distribution/src/main/scripts/moquette.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ echo " \_| |_/\___/ \__, |\__,_|\___|\__|\__\___| \_| |_/\_/\_\ \_/ \_/ "
1313
echo " | | "
1414
echo " |_| "
1515
echo " "
16-
echo " version: 0.12.1 "
16+
echo " version: 0.13-SNAPSHOT "
1717

1818
set "CURRENT_DIR=%cd%"
1919
if not "%MOQUETTE_HOME%" == "" goto gotHome

distribution/src/main/scripts/moquette.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ echo " \_| |_/\___/ \__, |\__,_|\___|\__|\__\___| \_| |_/\_/\_\ \_/ \_/ "
1313
echo " | | "
1414
echo " |_| "
1515
echo " "
16-
echo " version: 0.12.1 "
16+
echo " version: 0..13-SNAPSHOT "
1717

1818

1919
cd "$(dirname "$0")"

tools_scripts/integration/brokerEmbeddedTest.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@GrabResolver(name='moquette-bintray', root='http://dl.bintray.com/andsel/maven/')
2-
@Grab(group='io.moquette', module='moquette-broker', version='0.12.1')
2+
@Grab(group='io.moquette', module='moquette-broker', version='0.13-SNAPSHOT')
33

44
import io.moquette.server.Server
55

0 commit comments

Comments
 (0)