diff --git a/pom.xml b/pom.xml
index 83d14f7a..73d68834 100644
--- a/pom.xml
+++ b/pom.xml
@@ -66,7 +66,7 @@
0.9.1
2.1
1.7.7
- 1.0.1
+ 1.2
true
diff --git a/src/main/resources/changelog.txt b/src/main/resources/changelog.txt
index 88e72558..d8b37f34 100644
--- a/src/main/resources/changelog.txt
+++ b/src/main/resources/changelog.txt
@@ -1,6 +1,15 @@
Spring HATEOAS Changelog
========================
+Changes in version 0.13.0.RELEASE (2014-06-18)
+----------------------------------------------
+- #199 - Improve design of HalEmbeddedBuilder.
+- #198 - TemplateVariables.concat(…) should not duplicate variables.
+- #195 - HalEmbeddedBuilder should consider rel provided by object to be added.
+- #192 - ControllerLinkBuilder not detecting the right @RequestMapping from a controller.
+- #188 - #187: Traverson correctly applies headers when using JsonPath to evaluat...
+- #187 - Traverson: toObject(jsonPath) does not apply headers.
+
Changes in version 0.12.0.RELEASE (2014-05-20)
----------------------------------------------
- #180 - Traverson is not expanding URI template on final call correctly.
diff --git a/src/test/java/org/springframework/hateoas/support/ChangelogCreator.java b/src/test/java/org/springframework/hateoas/support/ChangelogCreator.java
index 591f743c..af1a3539 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 = 12;
+ private static final int MILESTONE_ID = 13;
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 {