Skip to content

Commit 26c1e10

Browse files
committed
#1862 - Update changelog.
1 parent d342db5 commit 26c1e10

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

src/main/resources/changelog.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Spring HATEOAS Changelog
22
========================
33

4+
Changes in version 2.0.0-RC1 (2022-10-12)
5+
----------------------------------------
6+
- #1861 - Upgrade to Reactor 2022.0 RC1.
7+
- #1860 - Upgrade to Spring Plugin 3.0 RC1.
8+
- #1859 - Add build profile to monitor Jackson 2.14 development.
9+
- #1858 - Improve AOT metadata.
10+
- #1857 - Upgrade to Spring Framework 6.0 RC1.
11+
412
Changes in version 2.0.0-M6 (2022-09-15)
513
----------------------------------------
614
- #1819 - Add build time initialization hint for native compilation for MediaTypes.

src/test/java/org/springframework/hateoas/support/ChangelogCreator.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
*/
3939
class ChangelogCreator {
4040

41-
private static final int MILESTONE_ID = 103;
41+
private static final int MILESTONE_ID = 106;
4242
private static final String URI_TEMPLATE = "https://api.github.com/repos/spring-projects/spring-hateoas/issues?milestone={id}&state=closed";
4343

4444
public static void main(String... args) {
@@ -89,7 +89,8 @@ private static void readPage(String content, boolean header) {
8989

9090
if (header) {
9191
System.out.println(
92-
"Changes in version " + JsonPath.read(content, "$[0].milestone.title") + " (" + LocalDate.now() + ")");
92+
"Changes in version " + JsonPath.read(content, "$[0].milestone.title") + " (" + LocalDate.now()
93+
+ ")");
9394
System.out.println("----------------------------------------");
9495
}
9596

0 commit comments

Comments
 (0)