diff --git a/src/main/resources/changelog.txt b/src/main/resources/changelog.txt index dc11ee0d..d77cc1e4 100644 --- a/src/main/resources/changelog.txt +++ b/src/main/resources/changelog.txt @@ -1,6 +1,16 @@ Spring HATEOAS Changelog ======================== +Changes in version 0.25.0.RELEASE (2018-07-25) +---------------------------------------------- +- #730 - Release 0.25. +- #724 - Ensure Spring 4.3 / 5 compatibility in EncodingUtils. +- #723 - Backport simplified configuration setup. +- #722 - Update build plugins. +- #721 - Upgrade to Lombok 1.18.0. +- #720 - Upgrade to Spring 4.3.18. +- #665 - ALPS spec name is "descriptor" not "descriptors". + Changes in version 0.24.0.RELEASE (2017-10-30) ---------------------------------------------- - #661 - Release 0.24. diff --git a/src/test/java/org/springframework/hateoas/support/ChangelogCreator.java b/src/test/java/org/springframework/hateoas/support/ChangelogCreator.java index 81723e17..41323da5 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 = 23; + private static final int MILESTONE_ID = 26; 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 {