From 2279fa05ceb4b62d58798760d662cb92bfca5f1e Mon Sep 17 00:00:00 2001 From: Juraj Misur Date: Thu, 20 Sep 2018 11:51:56 +0200 Subject: [PATCH] 2.0.2 release --- README.md | 14 +++----------- docs/index.html | 14 +++++++------- pom.xml | 2 +- samples/java-webflux/generated-docs/index.html | 4 ++-- samples/java-webflux/pom.xml | 2 +- samples/java-webmvc/build.gradle | 2 +- samples/java-webmvc/generated-docs/index.html | 10 +++++----- samples/java-webmvc/pom.xml | 2 +- samples/kotlin-webmvc/build.gradle | 2 +- samples/kotlin-webmvc/generated-docs/index.html | 12 ++++++------ samples/kotlin-webmvc/pom.xml | 2 +- samples/shared/pom.xml | 2 +- spring-auto-restdocs-core/pom.xml | 2 +- spring-auto-restdocs-docs/pom.xml | 4 ++-- spring-auto-restdocs-dokka-json/pom.xml | 2 +- spring-auto-restdocs-json-doclet-jdk9/pom.xml | 4 ++-- spring-auto-restdocs-json-doclet/pom.xml | 2 +- 17 files changed, 37 insertions(+), 45 deletions(-) diff --git a/README.md b/README.md index d61d201b..a96cf3d8 100644 --- a/README.md +++ b/README.md @@ -22,23 +22,15 @@ from the Introducing Spring Auto REST Docs talk at Spring IO 2017 are also avail ## Documentation -[Current 2.0.1 release](https://htmlpreview.github.io/?https://github.com/ScaCap/spring-auto-restdocs/blob/v2.0.1/docs/index.html) reference guide (based on Spring REST Docs 2.x). +[Current 2.0.2 release](https://htmlpreview.github.io/?https://github.com/ScaCap/spring-auto-restdocs/blob/v2.0.2/docs/index.html) reference guide (based on Spring REST Docs 2.x). [Current 1.0.13 release](https://htmlpreview.github.io/?https://github.com/ScaCap/spring-auto-restdocs/blob/v1.0.13/docs/index.html) reference guide (based on Spring REST Docs 1.x). -Latest master [2.0.2-SNAPSHOT](https://scacap.github.io/spring-auto-restdocs) reference guide. +Latest master [2.0.3-SNAPSHOT](https://scacap.github.io/spring-auto-restdocs) reference guide. Older releases: -[2.0.0](https://htmlpreview.github.io/?https://github.com/ScaCap/spring-auto-restdocs/blob/v2.0.0/docs/index.html), +[2.0.1](https://htmlpreview.github.io/?https://github.com/ScaCap/spring-auto-restdocs/blob/v2.0.1/docs/index.html), [1.0.12](https://htmlpreview.github.io/?https://github.com/ScaCap/spring-auto-restdocs/blob/v1.0.12/docs/index.html), -[1.0.11](https://htmlpreview.github.io/?https://github.com/ScaCap/spring-auto-restdocs/blob/v1.0.11/docs/index.html), -[1.0.10](https://htmlpreview.github.io/?https://github.com/ScaCap/spring-auto-restdocs/blob/v1.0.10/docs/index.html), -[1.0.9](https://htmlpreview.github.io/?https://github.com/ScaCap/spring-auto-restdocs/blob/v1.0.9/docs/index.html), -[1.0.8](https://htmlpreview.github.io/?https://github.com/ScaCap/spring-auto-restdocs/blob/v1.0.8/docs/index.html), -[1.0.7](https://htmlpreview.github.io/?https://github.com/ScaCap/spring-auto-restdocs/blob/v1.0.7/docs/index.html), -[1.0.6](https://htmlpreview.github.io/?https://github.com/ScaCap/spring-auto-restdocs/blob/v1.0.6/docs/index.html), -[1.0.5](https://htmlpreview.github.io/?https://github.com/ScaCap/spring-auto-restdocs/blob/v1.0.5/docs/index.html), -[1.0.4](https://htmlpreview.github.io/?https://github.com/ScaCap/spring-auto-restdocs/blob/v1.0.4/docs/index.html). ## Main features diff --git a/docs/index.html b/docs/index.html index 2425abf3..12783c62 100644 --- a/docs/index.html +++ b/docs/index.html @@ -432,7 +432,7 @@

Spring Auto REST Docs

Scalable Capital
-version 2.0.2-SNAPSHOT +version 2.0.2
Table of Contents
@@ -625,7 +625,7 @@

Usage
<dependency>
     <groupId>capital.scalable</groupId>
     <artifactId>spring-auto-restdocs-core</artifactId>
-    <version>2.0.1</version>
+    <version>2.0.2</version>
     <scope>test</scope> (1)
 </dependency>
 
@@ -662,7 +662,7 @@ 

Usage <docletArtifact> <groupId>capital.scalable</groupId> <artifactId>spring-auto-restdocs-json-doclet</artifactId> (4) - <version>2.0.1</version> + <version>2.0.2</version> </docletArtifact> <destDir>generated-javadoc-json</destDir> (3) <reportOutputDirectory>${project.build.directory}</reportOutputDirectory> (3) @@ -711,8 +711,8 @@

Usage } dependencies { - testCompile group: 'capital.scalable', name: 'spring-auto-restdocs-core', version: '2.0.1' (1) - jsondoclet group: 'capital.scalable', name: 'spring-auto-restdocs-json-doclet', version: '2.0.1' (4) + testCompile group: 'capital.scalable', name: 'spring-auto-restdocs-core', version: '2.0.2' (1) + jsondoclet group: 'capital.scalable', name: 'spring-auto-restdocs-json-doclet', version: '2.0.2' (4) } task jsonDoclet(type: Javadoc, dependsOn: compileJava) { @@ -1951,8 +1951,8 @@

diff --git a/pom.xml b/pom.xml index d2ab4d07..94fc1fad 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ capital.scalable spring-auto-restdocs-parent - 2.0.2-SNAPSHOT + 2.0.2 pom Spring Auto REST Docs Parent POM diff --git a/samples/java-webflux/generated-docs/index.html b/samples/java-webflux/generated-docs/index.html index 5c63d3bb..8b1747c7 100644 --- a/samples/java-webflux/generated-docs/index.html +++ b/samples/java-webflux/generated-docs/index.html @@ -1949,9 +1949,9 @@

< } ], "pageable" : "INSTANCE", "total" : 1, + "last" : true, "totalElements" : 1, "totalPages" : 1, - "last" : true, "size" : 0, "number" : 0, "first" : true, @@ -2461,7 +2461,7 @@

diff --git a/samples/java-webflux/pom.xml b/samples/java-webflux/pom.xml index c56f52e2..0a5461e1 100644 --- a/samples/java-webflux/pom.xml +++ b/samples/java-webflux/pom.xml @@ -35,7 +35,7 @@ UTF-8 capital.scalable.restdocs.example.Application 2.0.2.RELEASE - 2.0.2-SNAPSHOT + 2.0.2 diff --git a/samples/java-webmvc/build.gradle b/samples/java-webmvc/build.gradle index 0fab9a21..69484a31 100644 --- a/samples/java-webmvc/build.gradle +++ b/samples/java-webmvc/build.gradle @@ -1,6 +1,6 @@ buildscript { ext { - springAutoRestDocsVersion = "2.0.2-SNAPSHOT" + springAutoRestDocsVersion = "2.0.2" springRestDocsVersion = "2.0.2.RELEASE" springBootVersion = "2.0.4.RELEASE" } diff --git a/samples/java-webmvc/generated-docs/index.html b/samples/java-webmvc/generated-docs/index.html index b4dd77aa..931c484f 100644 --- a/samples/java-webmvc/generated-docs/index.html +++ b/samples/java-webmvc/generated-docs/index.html @@ -1145,7 +1145,7 @@

$ curl 'http://localhost:8080/items' -i -X POST \
     -H 'Content-Type: application/json' \
-    -H 'Authorization: Bearer 46ab9c29-3e36-449c-bb8e-269196b13e4d' \
+    -H 'Authorization: Bearer afcd243f-5791-435e-95f3-836f317bb499' \
     -d '{"description":"Hot News"}'
@@ -1382,7 +1382,7 @@

$ curl 'http://localhost:8080/items/1' -i -X PUT \
     -H 'Content-Type: application/json' \
-    -H 'Authorization: Bearer 46ab9c29-3e36-449c-bb8e-269196b13e4d' \
+    -H 'Authorization: Bearer afcd243f-5791-435e-95f3-836f317bb499' \
     -d '{"description":"Hot News"}'
@@ -1488,7 +1488,7 @@

$ curl 'http://localhost:8080/items/1' -i -X DELETE \
-    -H 'Authorization: Bearer 46ab9c29-3e36-449c-bb8e-269196b13e4d'
+ -H 'Authorization: Bearer afcd243f-5791-435e-95f3-836f317bb499'
@@ -1984,13 +1984,13 @@

< "unpaged" : false }, "total" : 1, - "totalPages" : 1, "totalElements" : 1, "last" : true, + "totalPages" : 1, "size" : 20, "number" : 0, - "first" : true, "numberOfElements" : 1, + "first" : true, "sort" : { "orders" : [ ], "sorted" : false, diff --git a/samples/java-webmvc/pom.xml b/samples/java-webmvc/pom.xml index 0c359fd3..c1b59ec4 100644 --- a/samples/java-webmvc/pom.xml +++ b/samples/java-webmvc/pom.xml @@ -35,7 +35,7 @@ UTF-8 capital.scalable.restdocs.example.Application 2.0.2.RELEASE - 2.0.2-SNAPSHOT + 2.0.2 diff --git a/samples/kotlin-webmvc/build.gradle b/samples/kotlin-webmvc/build.gradle index 0c5002d7..6c48ccbb 100644 --- a/samples/kotlin-webmvc/build.gradle +++ b/samples/kotlin-webmvc/build.gradle @@ -1,7 +1,7 @@ buildscript { ext { kotlinVersion = "1.2.60" - springAutoRestDocsVersion = "2.0.2-SNAPSHOT" + springAutoRestDocsVersion = "2.0.2" springRestDocsVersion = "2.0.2.RELEASE" springBootVersion = "2.0.4.RELEASE" dokkaVersion = "0.9.16" diff --git a/samples/kotlin-webmvc/generated-docs/index.html b/samples/kotlin-webmvc/generated-docs/index.html index 7a15c9be..c55fe065 100644 --- a/samples/kotlin-webmvc/generated-docs/index.html +++ b/samples/kotlin-webmvc/generated-docs/index.html @@ -1130,7 +1130,7 @@

$ curl 'http://localhost:8080/items' -i -X POST \
     -H 'Content-Type: application/json' \
-    -H 'Authorization: Bearer e74119bc-d372-4c17-9263-931e0349e8ad' \
+    -H 'Authorization: Bearer 9ce711ac-e82c-42aa-8d5a-4c136b06d79b' \
     -d '{"description":"Hot News"}'
@@ -1367,7 +1367,7 @@

$ curl 'http://localhost:8080/items/1' -i -X PUT \
     -H 'Content-Type: application/json' \
-    -H 'Authorization: Bearer e74119bc-d372-4c17-9263-931e0349e8ad' \
+    -H 'Authorization: Bearer 9ce711ac-e82c-42aa-8d5a-4c136b06d79b' \
     -d '{"description":"Hot News"}'
@@ -1469,7 +1469,7 @@

$ curl 'http://localhost:8080/items/1' -i -X DELETE \
-    -H 'Authorization: Bearer e74119bc-d372-4c17-9263-931e0349e8ad'
+ -H 'Authorization: Bearer 9ce711ac-e82c-42aa-8d5a-4c136b06d79b'
@@ -1957,8 +1957,8 @@

< "offset" : 0, "pageSize" : 20, "pageNumber" : 0, - "paged" : true, - "unpaged" : false + "unpaged" : false, + "paged" : true }, "total" : 1, "last" : true, @@ -1966,8 +1966,8 @@

< "totalElements" : 1, "size" : 20, "number" : 0, - "first" : true, "numberOfElements" : 1, + "first" : true, "sort" : { "orders" : [ ], "sorted" : false, diff --git a/samples/kotlin-webmvc/pom.xml b/samples/kotlin-webmvc/pom.xml index 04dae76d..6e3f3bcb 100644 --- a/samples/kotlin-webmvc/pom.xml +++ b/samples/kotlin-webmvc/pom.xml @@ -34,7 +34,7 @@ UTF-8 2.0.2.RELEASE - 2.0.2-SNAPSHOT + 2.0.2 1.2.60 0.9.16 ${project.build.directory}/generated-javadoc-json diff --git a/samples/shared/pom.xml b/samples/shared/pom.xml index 5d9880c3..1007d239 100644 --- a/samples/shared/pom.xml +++ b/samples/shared/pom.xml @@ -33,7 +33,7 @@ UTF-8 - 2.0.2-SNAPSHOT + 2.0.2 diff --git a/spring-auto-restdocs-core/pom.xml b/spring-auto-restdocs-core/pom.xml index 52a77c81..b4465788 100644 --- a/spring-auto-restdocs-core/pom.xml +++ b/spring-auto-restdocs-core/pom.xml @@ -7,7 +7,7 @@ capital.scalable spring-auto-restdocs-parent - 2.0.2-SNAPSHOT + 2.0.2 .. diff --git a/spring-auto-restdocs-docs/pom.xml b/spring-auto-restdocs-docs/pom.xml index d5ddc5c2..9751a55b 100644 --- a/spring-auto-restdocs-docs/pom.xml +++ b/spring-auto-restdocs-docs/pom.xml @@ -6,7 +6,7 @@ capital.scalable spring-auto-restdocs-parent - 2.0.2-SNAPSHOT + 2.0.2 .. @@ -18,7 +18,7 @@ ${project.basedir}/../docs - 2.0.1 + 2.0.2 diff --git a/spring-auto-restdocs-dokka-json/pom.xml b/spring-auto-restdocs-dokka-json/pom.xml index d4f4b1de..aa763790 100644 --- a/spring-auto-restdocs-dokka-json/pom.xml +++ b/spring-auto-restdocs-dokka-json/pom.xml @@ -5,7 +5,7 @@ capital.scalable spring-auto-restdocs-parent - 2.0.2-SNAPSHOT + 2.0.2 .. diff --git a/spring-auto-restdocs-json-doclet-jdk9/pom.xml b/spring-auto-restdocs-json-doclet-jdk9/pom.xml index c85e7b04..e74809fd 100644 --- a/spring-auto-restdocs-json-doclet-jdk9/pom.xml +++ b/spring-auto-restdocs-json-doclet-jdk9/pom.xml @@ -5,12 +5,12 @@ capital.scalable spring-auto-restdocs-parent - 2.0.2-SNAPSHOT + 2.0.2 .. spring-auto-restdocs-json-doclet-jdk9 - 2.0.2-SNAPSHOT + 2.0.2 jar Spring Auto REST Docs Json Doclet for JDK9+ diff --git a/spring-auto-restdocs-json-doclet/pom.xml b/spring-auto-restdocs-json-doclet/pom.xml index 04b45365..009aeb8d 100644 --- a/spring-auto-restdocs-json-doclet/pom.xml +++ b/spring-auto-restdocs-json-doclet/pom.xml @@ -5,7 +5,7 @@ capital.scalable spring-auto-restdocs-parent - 2.0.2-SNAPSHOT + 2.0.2 ..