#1862 - Update changelog.

This commit is contained in:
Oliver Drotbohm
2022-10-12 12:58:58 +02:00
parent d342db5dfb
commit 26c1e10f68
2 changed files with 11 additions and 2 deletions

View File

@@ -1,6 +1,14 @@
Spring HATEOAS Changelog
========================
Changes in version 2.0.0-RC1 (2022-10-12)
----------------------------------------
- #1861 - Upgrade to Reactor 2022.0 RC1.
- #1860 - Upgrade to Spring Plugin 3.0 RC1.
- #1859 - Add build profile to monitor Jackson 2.14 development.
- #1858 - Improve AOT metadata.
- #1857 - Upgrade to Spring Framework 6.0 RC1.
Changes in version 2.0.0-M6 (2022-09-15)
----------------------------------------
- #1819 - Add build time initialization hint for native compilation for MediaTypes.

View File

@@ -38,7 +38,7 @@ import com.jayway.jsonpath.JsonPath;
*/
class ChangelogCreator {
private static final int MILESTONE_ID = 103;
private static final int MILESTONE_ID = 106;
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) {
@@ -89,7 +89,8 @@ class ChangelogCreator {
if (header) {
System.out.println(
"Changes in version " + JsonPath.read(content, "$[0].milestone.title") + " (" + LocalDate.now() + ")");
"Changes in version " + JsonPath.read(content, "$[0].milestone.title") + " (" + LocalDate.now()
+ ")");
System.out.println("----------------------------------------");
}