diff --git a/src/main/resources/changelog.txt b/src/main/resources/changelog.txt index 59c3694f..355b7150 100644 --- a/src/main/resources/changelog.txt +++ b/src/main/resources/changelog.txt @@ -1,6 +1,15 @@ Spring HATEOAS Changelog ======================== +Changes in version 0.19.0.RELEASE (2015-09-01) +---------------------------------------------- +- #379 - Release 0.19.0. +- #378 - Add title attributes for HAL links derived from resource bundle. +- #376 - Compile against latest JAX-RS API. +- #375 - TrueOnlyBooleanSerializer.isEmpty(…) not honored on Jackson 2.6. +- #363 - Support for multiple Curie namespaces in the same application. +- #320 - Improve curie rendering in case no namespaced links are present. + Changes in version 0.18.0.RELEASE (2015-08-04) ---------------------------------------------- - #369 - Traverson's getAndFindLinkWithRel(…) needs to expand given URI defensively. diff --git a/src/test/java/org/springframework/hateoas/support/ChangelogCreator.java b/src/test/java/org/springframework/hateoas/support/ChangelogCreator.java index 470b5231..80e6ec3b 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 = 18; + private static final int MILESTONE_ID = 19; 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 {