diff --git a/src/main/resources/changelog.txt b/src/main/resources/changelog.txt index bc7d7c09..bf15ae32 100644 --- a/src/main/resources/changelog.txt +++ b/src/main/resources/changelog.txt @@ -1,6 +1,23 @@ Spring HATEOAS Changelog ======================== +Changes in version 1.1.0.M3 (2020-03-31) +---------------------------------------- +- #1246 - Upgrade to AssertJ 3.15.0. +- #1245 - Upgrade to Kotlin 1.3.71. +- #1241 - Additional factory methods for empty CollectionModel and PagedModel instances. +- #1230 - Upgrade to Jackson 2.10.3. +- #1229 - Upgrade to Reactor Dysprosium-SR6. +- #1228 - Fix CI scripts to properly use maven caching. +- #1227 - Upgrade to JUnit 5.6.1. +- #1226 - Upgrade to Spring Framework 5.2.5.RELEASE. +- #1225 - Provide implementation of WebTestClientConfigurer to support hypermedia. +- #1224 - Provide API for users to easily configure WebClient. +- #1223 - Provide API for users to easily configure RestTemplate. +- #1216 - Consider providing String constants in IanaLinkRelations. +- #1215 - Update RFC-5988 references to RFC-8288. +- #1208 - Migrate from Lombok's @Wither to @With. + Changes in version 1.1.0.M2 (2020-02-12) ---------------------------------------- - #1205 - Fix nullability warnings in EntityModelProcessorWrapper.isValueTypeMatch(…). diff --git a/src/test/java/org/springframework/hateoas/support/ChangelogCreator.java b/src/test/java/org/springframework/hateoas/support/ChangelogCreator.java index efe3261a..cd1d91fc 100644 --- a/src/test/java/org/springframework/hateoas/support/ChangelogCreator.java +++ b/src/test/java/org/springframework/hateoas/support/ChangelogCreator.java @@ -38,7 +38,7 @@ import com.jayway.jsonpath.JsonPath; */ class ChangelogCreator { - private static final int MILESTONE_ID = 41; + private static final int MILESTONE_ID = 43; 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) {