File tree 4 files changed +4
-4
lines changed
src/main/java/net/dean/jraw
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 17
17
allprojects {
18
18
sourceCompatibility = 1.7
19
19
group = ' net.dean.jraw'
20
- version = ' 0.6.1 '
20
+ version = ' 0.7.0 '
21
21
22
22
repositories {
23
23
mavenCentral()
Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ public static MediaType parseMediaType(String header) {
223
223
}
224
224
225
225
/**
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 '& '
227
227
* and the key-value separator is assumed to be '='
228
228
*/
229
229
public static Map <String , String > parseUrlEncoded (String data ) {
Original file line number Diff line number Diff line change 4
4
* This class provides a standard way to version the library
5
5
*/
6
6
public class Version {
7
- private static final Version v = new Version (0 , 6 , 1 );
7
+ private static final Version v = new Version (0 , 7 , 0 );
8
8
9
9
/**
10
10
* 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/"
12
12
DOC_FOLDER=$( basename $BUILD_DOC )
13
13
# # First seven characters of the latest commit SHA
14
14
COMMIT_SHA=$( git rev-parse --short HEAD --verify)
15
- # # Last release (v0.6.1, etc. )
15
+ # # Last release (vX.X.X )
16
16
LATEST_TAG=$( git describe --abbrev=0 --tags)
17
17
# # Generic commit message
18
18
COMMIT_MSG=" Update Javadoc to commit $COMMIT_SHA "
You can’t perform that action at this time.
0 commit comments