Skip to content

Commit f93c7f8

Browse files
committed
Create version v0.7.0
1 parent 3bbae30 commit f93c7f8

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ext {
1717
allprojects {
1818
sourceCompatibility = 1.7
1919
group = 'net.dean.jraw'
20-
version = '0.6.1'
20+
version = '0.7.0'
2121

2222
repositories {
2323
mavenCentral()

src/main/java/net/dean/jraw/JrawUtils.java

+1-1
Original file line numberDiff line numberDiff 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) {

src/main/java/net/dean/jraw/Version.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* This class provides a standard way to version the library
55
*/
66
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);
88

99
/**
1010
* Returns the current version of the library

upload_docs.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ BUILD_DOC="build/docs/javadoc/"
1212
DOC_FOLDER=$(basename $BUILD_DOC)
1313
## First seven characters of the latest commit SHA
1414
COMMIT_SHA=$(git rev-parse --short HEAD --verify)
15-
## Last release (v0.6.1, etc.)
15+
## Last release (vX.X.X)
1616
LATEST_TAG=$(git describe --abbrev=0 --tags)
1717
## Generic commit message
1818
COMMIT_MSG="Update Javadoc to commit $COMMIT_SHA"

0 commit comments

Comments
 (0)