diff --git a/pom.xml b/pom.xml
index d9acbf84..8d2a5094 100644
--- a/pom.xml
+++ b/pom.xml
@@ -60,7 +60,7 @@
UTF-8
3.2.9.RELEASE
1.1.2
- 2.3.3
+ 2.4.1
1.0
1.1.1
0.9.1
@@ -161,7 +161,7 @@
${evo.version}
true
-
+
org.projectlombok
lombok
@@ -227,14 +227,14 @@
xmlunit
xmlunit
- 1.3
+ 1.5
test
net.jadler
jadler-all
- 1.1.0
+ 1.1.1
test
@@ -254,7 +254,7 @@
org.apache.maven.plugins
maven-compiler-plugin
- 2.5.1
+ 3.1
1.6
1.6
@@ -281,7 +281,7 @@
org.apache.maven.plugins
maven-jar-plugin
- 2.3.1
+ 2.5
true
@@ -290,7 +290,7 @@
org.apache.maven.plugins
maven-source-plugin
- 2.1.2
+ 2.2.1
attach-sources
@@ -304,7 +304,7 @@
org.apache.maven.plugins
maven-javadoc-plugin
- 2.8
+ 2.9.1
diff --git a/src/main/resources/changelog.txt b/src/main/resources/changelog.txt
index 9e31d680..194d6278 100644
--- a/src/main/resources/changelog.txt
+++ b/src/main/resources/changelog.txt
@@ -1,6 +1,16 @@
Spring HATEOAS Changelog
========================
+Changes in version 0.15.0.RELEASE (2014-07-10)
+----------------------------------------------
+- #212 - Traversion should be able to return the last link found.
+- #203 - Traverson can now take a customized RestTemplate.
+- #201 - Make RestTemplate of Traverson configurable.
+- #200 - Updated reference documentation to explain CurieProvider API.
+- #185 - Add support for link discovery for other media types than HAL to Traverson.
+- #183 - Curie documentation or example.
+- #141 - Add support for ALPS.
+
Changes in version 0.14.0.RELEASE (2014-06-30)
----------------------------------------------
- #206 - Set classloader for dummy method proxies.
diff --git a/src/test/java/org/springframework/hateoas/support/ChangelogCreator.java b/src/test/java/org/springframework/hateoas/support/ChangelogCreator.java
index 274e162f..31b99d1e 100644
--- a/src/test/java/org/springframework/hateoas/support/ChangelogCreator.java
+++ b/src/test/java/org/springframework/hateoas/support/ChangelogCreator.java
@@ -30,7 +30,7 @@ import com.jayway.jsonpath.JsonPath;
*/
class ChangelogCreator {
- private static final int MILESTONE_ID = 14;
+ private static final int MILESTONE_ID = 15;
private static final String URI_TEMPLATE = "https://api.github.com/repos/spring-projects/spring-hateoas/issues?milestone={id}&state=closed";
public static void main(String... args) throws Exception {
diff --git a/src/test/resources/vnderror2.json b/src/test/resources/vnderror2.json
index bd759369..f3faf2d7 100644
--- a/src/test/resources/vnderror2.json
+++ b/src/test/resources/vnderror2.json
@@ -1,4 +1,6 @@
[ {
+ "logref" : "42",
+ "message" : "Validation failed!",
"_links" : {
"describes" : {
"href" : "http://..."
@@ -6,10 +8,10 @@
"help" : {
"href" : "http://..."
}
- },
- "logref" : "42",
- "message" : "Validation failed!"
+ }
}, {
+ "logref" : "42",
+ "message" : "Validation failed!",
"_links" : {
"describes" : {
"href" : "http://..."
@@ -17,10 +19,10 @@
"help" : {
"href" : "http://..."
}
- },
- "logref" : "42",
- "message" : "Validation failed!"
+ }
}, {
+ "logref" : "42",
+ "message" : "Validation failed!",
"_links" : {
"describes" : {
"href" : "http://..."
@@ -28,7 +30,5 @@
"help" : {
"href" : "http://..."
}
- },
- "logref" : "42",
- "message" : "Validation failed!"
-} ]
\ No newline at end of file
+ }
+} ]