File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
src/main/java/net/dean/jraw Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1717allprojects {
1818 sourceCompatibility = 1.7
1919 group = ' net.dean.jraw'
20- version = ' 0.6.1 '
20+ version = ' 0.7.0 '
2121
2222 repositories {
2323 mavenCentral()
Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ public static MediaType parseMediaType(String header) {
223223 }
224224
225225 /**
226- * Parses a URL-encoded string with keys and values into a map. The key-value pair separator is assumed to be '&'
226+ * Parses a URL-encoded string with keys and values into a map. The key-value pair separator is assumed to be '& '
227227 * and the key-value separator is assumed to be '='
228228 */
229229 public static Map <String , String > parseUrlEncoded (String data ) {
Original file line number Diff line number Diff line change 44 * This class provides a standard way to version the library
55 */
66public class Version {
7- private static final Version v = new Version (0 , 6 , 1 );
7+ private static final Version v = new Version (0 , 7 , 0 );
88
99 /**
1010 * Returns the current version of the library
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ BUILD_DOC="build/docs/javadoc/"
1212DOC_FOLDER=$( basename $BUILD_DOC )
1313# # First seven characters of the latest commit SHA
1414COMMIT_SHA=$( git rev-parse --short HEAD --verify)
15- # # Last release (v0.6.1, etc. )
15+ # # Last release (vX.X.X )
1616LATEST_TAG=$( git describe --abbrev=0 --tags)
1717# # Generic commit message
1818COMMIT_MSG=" Update Javadoc to commit $COMMIT_SHA "
You can’t perform that action at this time.
0 commit comments