Bump version number to 0.3-SNAPSHOT

This commit is contained in:
Mike Hearn
2011-07-06 11:48:24 +00:00
parent 8d302120f8
commit 037d99770d
2 changed files with 2 additions and 2 deletions

View File

@@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.google</groupId>
<artifactId>bitcoinj</artifactId>
<version>0.2</version>
<version>0.3-SNAPSHOT</version>
<name>BitCoinJ</name>
<description>A Java implementation of a Bitcoin client-only node</description>
<url>http://code.google.com/p/bitcoinj</url>

View File

@@ -64,7 +64,7 @@ public class VersionMessage extends Message {
} catch (UnknownHostException e) {
throw new RuntimeException(e); // Cannot happen.
}
subVer = "BitCoinJ 0.2";
subVer = "BitCoinJ 0.3-SNAPSHOT";
bestHeight = newBestHeight;
}