Skip to content

Commit

Permalink
Create version v0.7.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mattbdean committed Mar 21, 2015
1 parent 92d9138 commit 5ffa6a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ext {
allprojects {
sourceCompatibility = 1.7
group = 'net.dean.jraw'
version = '0.7.0.2'
version = '0.7.0.3'

repositories {
mavenCentral()
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/net/dean/jraw/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
* This class provides a standard way to version the library
*/
public class Version {
/** If a field is equal to this constant, then it will be excluded in {@link #formatted()}. */
/** If the 'build' field is equal to this constant, then it will be excluded in {@link #formatted()}. */
public static final int EXCLUDE = -1;
private static final Version INSTANCE = new Version(0, 7, 0, 2);
private static final Version INSTANCE = new Version(0, 7, 0, 3);

/** Gets the current version of the library */
public static Version get() {
Expand Down

0 comments on commit 5ffa6a6

Please sign in to comment.