#1279 - Prepare changelog.

This commit is contained in:
Oliver Drotbohm
2020-04-28 13:03:51 +02:00
parent 483303fa1f
commit 96b87ebb91
2 changed files with 16 additions and 6 deletions

View File

@@ -1,6 +1,14 @@
Spring HATEOAS Changelog
========================
Changes in version 1.0.5.RELEASE (2020-04-28)
----------------------------------------
- #1279 - Release 1.0.5.RELEASE.
- #1272 - Backport adding Kotlin source to released artifacts.
- #1267 - Use JDK 14 for Java.next CI testing.
- #1263 - Remove .factorypath.
- #1262 - Upgrade to Spring docs resource 0.2.1.
Changes in version 1.0.4.RELEASE (2020-03-24)
----------------------------------------
- #1236 - Release 1.0.4.RELEASE.

View File

@@ -15,18 +15,20 @@
*/
package org.springframework.hateoas.support;
import com.jayway.jsonpath.JsonPath;
import net.minidev.json.JSONArray;
import java.time.Duration;
import java.time.LocalDate;
import java.util.Iterator;
import java.util.List;
import org.springframework.hateoas.IanaLinkRelations;
import org.springframework.hateoas.Links;
import org.springframework.http.HttpEntity;
import org.springframework.http.HttpHeaders;
import org.springframework.web.reactive.function.client.WebClient;
import java.time.Duration;
import java.time.LocalDate;
import java.util.Iterator;
import java.util.List;
import com.jayway.jsonpath.JsonPath;
/**
* Little helper to build a changelog from the tickets of a particular milestone.
@@ -36,7 +38,7 @@ import java.util.List;
*/
class ChangelogCreator {
private static final int MILESTONE_ID = 42;
private static final int MILESTONE_ID = 44;
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) {