diff --git a/src/main/resources/changelog.txt b/src/main/resources/changelog.txt index 61292a46..b214a327 100644 --- a/src/main/resources/changelog.txt +++ b/src/main/resources/changelog.txt @@ -1,6 +1,22 @@ Spring Hateoas Changelog ========================= +Changes in version 0.7.0.RELEASE (2013-16-07) +--------------------------------------------- +- #91 - Improve proxying for links build from method references +- #99 - HalLinkListSerializers don't guarantee stable link order +- #98 - PagedResources JAXB un-marshalling is broken +- #94 - Fix for issue #93 +- #93 - Jackson can't deserialize VndErrors +- #92 - Remove JsonAutoDetect annotations from PagedResources +- #90 - Consider port number when setting the host from the X-Forward-Host header +- #86 - Make sure all test run during build +- #85 - Add support to render resource links as headers instead of in the body +- #84 - Make Resource more defenisive against null content +- #83 - #81: handle null content when adding Resource or Resources +- #81 - Nullpointer in HalEmbeddedBuilder +- #74 - Release 0.7 + Changes in version 0.6.0.RELEASE (2013-31-05) --------------------------------------------- - #73 - ControllerLinkBuilder should allow pointing to unmapped controllers diff --git a/src/test/java/org/springframework/hateoas/support/ChangelogCreator.java b/src/test/java/org/springframework/hateoas/support/ChangelogCreator.java index b2739ea8..728d8ec4 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 = 6; + private static final int MILESTONE_ID = 7; private static final String URI_TEMPLATE = "https://api.github.com/repos/SpringSource/spring-hateoas/issues?milestone={id}&state=closed"; public static void main(String... args) throws Exception {