From 5ffa6a6487f041e00550d8beeb352e85b1c380a9 Mon Sep 17 00:00:00 2001 From: Matthew Dean Date: Sat, 21 Mar 2015 10:18:31 -0400 Subject: [PATCH] Create version v0.7.0.3 --- build.gradle | 2 +- src/main/java/net/dean/jraw/Version.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index c29168334..f9b84397f 100644 --- a/build.gradle +++ b/build.gradle @@ -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() diff --git a/src/main/java/net/dean/jraw/Version.java b/src/main/java/net/dean/jraw/Version.java index ab9d171b1..2a73eb805 100644 --- a/src/main/java/net/dean/jraw/Version.java +++ b/src/main/java/net/dean/jraw/Version.java @@ -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() {