Skip to content

Commit

Permalink
incremented version
Browse files Browse the repository at this point in the history
  • Loading branch information
purplefox committed May 8, 2012
1 parent dec8126 commit e6af1b0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<property name="core-jar-file" value="vert.x-core.jar"/>
<property name="platform-jar-file" value="vert.x-platform.jar"/>
<property name="test-framework-jar-file" value="vert.x-testframework.jar"/>
<property name="version-number" value="1.0.beta11"/>
<property name="version-number" value="1.0.final"/>
<property name="dist-build-base" value="${target}/dist-build"/>
<property name="dist-build" value="${dist-build-base}/vert.x-${version-number}"/>
<property name="java-src-root" value="src/main/java"/>
Expand Down
2 changes: 1 addition & 1 deletion src/examples/vertx-dev
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ $DIRNAME/../../lib/main/groovy-all.jar:\
$DIRNAME/../../src/main/ruby:\
$DIRNAME/../../src/main/javascript

MODS_DIR=$SCRIPTDIR/../../target/dist-build/vert.x-1.0.beta11/mods
MODS_DIR=$SCRIPTDIR/../../target/dist-build/vert.x-1.0.final/mods

java -Djava.util.logging.config.file=$DIRNAME/../../conf/logging.properties -Djruby.home=$JRUBY_HOME \
-Dvertx.mods=$MODS_DIR -cp $CLASSPATH org.vertx.java.deploy.impl.cli.VertxMgr "$@"
2 changes: 1 addition & 1 deletion src/main/java/org/vertx/java/deploy/impl/cli/VertxMgr.java
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ private VertxMgr(String[] sargs) {
VertxCommand cmd = null;

if (sargs[0].equalsIgnoreCase("version")) {
System.out.println("vert.x 1.0.beta11");
System.out.println("vert.x 1.0.final");
} else if (sargs[0].equalsIgnoreCase("start")) {
startServer(args);
} else if (sargs[0].equalsIgnoreCase("run")) {
Expand Down

0 comments on commit e6af1b0

Please sign in to comment.