#174 - Updated changelog.

This commit is contained in:
Oliver Gierke
2014-05-20 10:59:29 +02:00
parent 84104897af
commit 3fd835cafd
3 changed files with 16 additions and 5 deletions

View File

@@ -1,9 +1,18 @@
Spring HATEOAS Changelog
========================
Changes in version 0.10.0.RELEASE (2014-05-01)
Changes in version 0.12.0.RELEASE (2014-05-20)
----------------------------------------------
- #173 - Release 0.110.
- #180 - Traverson is not expanding URI template on final call correctly.
- #179 - Fix double encoding in LinkBuilderSupport.
- #178 - Potential NullPointerException in ResourceSupport.
- #177 - Fix typo in readme.
- #131 - Add support for client side service traversing.
- #96 - LinkBuilderSupport double encoding URL.
Changes in version 0.11.0.RELEASE (2014-05-01)
----------------------------------------------
- #173 - Release 0.11.
- #172 - Link should be serializable.
- #170 - Proxy header detection should honor X-Forwarded-Port.
- #114 - linkTo(methodOn()) problem when method is defined by super class of controller.

View File

@@ -1,4 +1,4 @@
Spring Hateoas 0.11
Spring Hateoas 0.12
Copyright (c) [2012-2014] Pivotal Software, Inc.
This product is licensed to you under the Apache License, Version 2.0 (the "License").

View File

@@ -30,7 +30,7 @@ import com.jayway.jsonpath.JsonPath;
*/
class ChangelogCreator {
private static final int MILESTONE_ID = 11;
private static final int MILESTONE_ID = 12;
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 {
@@ -47,7 +47,9 @@ class ChangelogCreator {
System.out.println("Milestone - " + JsonPath.read(response, "$[1].milestone.title"));
for (Object title : titles) {
System.out.println(String.format("- #%s - %s", ids.next(), title));
String format = String.format("- #%s - %s", ids.next(), title);
System.out.println(format.endsWith(".") ? format : format.concat("."));
}
}
}