Skip to content
This repository has been archived by the owner on Dec 19, 2023. It is now read-only.

Commit

Permalink
2.0.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jmisur committed Sep 20, 2018
1 parent 4adcce0 commit 2279fa0
Show file tree
Hide file tree
Showing 17 changed files with 37 additions and 45 deletions.
14 changes: 3 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
14 changes: 7 additions & 7 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@
<h1>Spring Auto REST Docs</h1>
<div class="details">
<span id="author" class="author">Scalable Capital</span><br>
<span id="revnumber">version 2.0.2-SNAPSHOT</span>
<span id="revnumber">version 2.0.2</span>
</div>
<div id="toc" class="toc2">
<div id="toctitle">Table of Contents</div>
Expand Down Expand Up @@ -625,7 +625,7 @@ <h3 id="gettingstarted-usage"><a class="link" href="#gettingstarted-usage">Usage
<pre class="highlightjs highlight"><code class="language-xml hljs" data-lang="xml">&lt;dependency&gt;
&lt;groupId&gt;capital.scalable&lt;/groupId&gt;
&lt;artifactId&gt;spring-auto-restdocs-core&lt;/artifactId&gt;
&lt;version&gt;2.0.1&lt;/version&gt;
&lt;version&gt;2.0.2&lt;/version&gt;
&lt;scope&gt;test&lt;/scope&gt; <i class="conum" data-value="1"></i><b>(1)</b>
&lt;/dependency&gt;

Expand Down Expand Up @@ -662,7 +662,7 @@ <h3 id="gettingstarted-usage"><a class="link" href="#gettingstarted-usage">Usage
&lt;docletArtifact&gt;
&lt;groupId&gt;capital.scalable&lt;/groupId&gt;
&lt;artifactId&gt;spring-auto-restdocs-json-doclet&lt;/artifactId&gt; <i class="conum" data-value="4"></i><b>(4)</b>
&lt;version&gt;2.0.1&lt;/version&gt;
&lt;version&gt;2.0.2&lt;/version&gt;
&lt;/docletArtifact&gt;
&lt;destDir&gt;generated-javadoc-json&lt;/destDir&gt; <i class="conum" data-value="3"></i><b>(3)</b>
&lt;reportOutputDirectory&gt;${project.build.directory}&lt;/reportOutputDirectory&gt; <i class="conum" data-value="3"></i><b>(3)</b>
Expand Down Expand Up @@ -711,8 +711,8 @@ <h3 id="gettingstarted-usage"><a class="link" href="#gettingstarted-usage">Usage
}

dependencies {
testCompile group: 'capital.scalable', name: 'spring-auto-restdocs-core', version: '2.0.1' <i class="conum" data-value="1"></i><b>(1)</b>
jsondoclet group: 'capital.scalable', name: 'spring-auto-restdocs-json-doclet', version: '2.0.1' <i class="conum" data-value="4"></i><b>(4)</b>
testCompile group: 'capital.scalable', name: 'spring-auto-restdocs-core', version: '2.0.2' <i class="conum" data-value="1"></i><b>(1)</b>
jsondoclet group: 'capital.scalable', name: 'spring-auto-restdocs-json-doclet', version: '2.0.2' <i class="conum" data-value="4"></i><b>(4)</b>
}

task jsonDoclet(type: Javadoc, dependsOn: compileJava) {
Expand Down Expand Up @@ -1951,8 +1951,8 @@ <h4 id="contributing-building-build"><a class="link" href="#contributing-buildin
</div>
<div id="footer">
<div id="footer-text">
Version 2.0.2-SNAPSHOT<br>
Last updated 2018-09-20 10:38:11 CEST
Version 2.0.2<br>
Last updated 2018-09-20 11:41:18 CEST
</div>
</div>
<link rel="stylesheet" href="highlight/styles/github.min.css">
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>capital.scalable</groupId>
<artifactId>spring-auto-restdocs-parent</artifactId>
<version>2.0.2-SNAPSHOT</version>
<version>2.0.2</version>
<packaging>pom</packaging>

<name>Spring Auto REST Docs Parent POM</name>
Expand Down
4 changes: 2 additions & 2 deletions samples/java-webflux/generated-docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1949,9 +1949,9 @@ <h4 id="_example_response_5"><a class="anchor" href="#_example_response_5"></a><
} ],
"pageable" : "INSTANCE",
"total" : 1,
"last" : true,
"totalElements" : 1,
"totalPages" : 1,
"last" : true,
"size" : 0,
"number" : 0,
"first" : true,
Expand Down Expand Up @@ -2461,7 +2461,7 @@ <h4 id="_example_request_response_3"><a class="anchor" href="#_example_request_r
</div>
<div id="footer">
<div id="footer-text">
Last updated 2018-08-21 17:28:10 CEST
Last updated 2018-09-20 11:36:05 CEST
</div>
</div>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/github.min.css">
Expand Down
2 changes: 1 addition & 1 deletion samples/java-webflux/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<start-class>capital.scalable.restdocs.example.Application</start-class>
<spring-restdocs.version>2.0.2.RELEASE</spring-restdocs.version>
<spring-auto-restdocs.version>2.0.2-SNAPSHOT</spring-auto-restdocs.version>
<spring-auto-restdocs.version>2.0.2</spring-auto-restdocs.version>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion samples/java-webmvc/build.gradle
Original file line number Diff line number Diff line change
@@ -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"
}
Expand Down
10 changes: 5 additions & 5 deletions samples/java-webmvc/generated-docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1145,7 +1145,7 @@ <h4 id="_example_request"><a class="anchor" href="#_example_request"></a><a clas
<div class="content">
<pre class="highlightjs highlight"><code class="language-bash hljs" data-lang="bash">$ 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"}'</code></pre>
</div>
</div>
Expand Down Expand Up @@ -1382,7 +1382,7 @@ <h4 id="_example_request_2"><a class="anchor" href="#_example_request_2"></a><a
<div class="content">
<pre class="highlightjs highlight"><code class="language-bash hljs" data-lang="bash">$ 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"}'</code></pre>
</div>
</div>
Expand Down Expand Up @@ -1488,7 +1488,7 @@ <h4 id="_example_request_3"><a class="anchor" href="#_example_request_3"></a><a
<div class="listingblock">
<div class="content">
<pre class="highlightjs highlight"><code class="language-bash hljs" data-lang="bash">$ curl 'http://localhost:8080/items/1' -i -X DELETE \
-H 'Authorization: Bearer 46ab9c29-3e36-449c-bb8e-269196b13e4d'</code></pre>
-H 'Authorization: Bearer afcd243f-5791-435e-95f3-836f317bb499'</code></pre>
</div>
</div>
</div>
Expand Down Expand Up @@ -1984,13 +1984,13 @@ <h4 id="_example_response_5"><a class="anchor" href="#_example_response_5"></a><
"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,
Expand Down
2 changes: 1 addition & 1 deletion samples/java-webmvc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<start-class>capital.scalable.restdocs.example.Application</start-class>
<spring-restdocs.version>2.0.2.RELEASE</spring-restdocs.version>
<spring-auto-restdocs.version>2.0.2-SNAPSHOT</spring-auto-restdocs.version>
<spring-auto-restdocs.version>2.0.2</spring-auto-restdocs.version>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion samples/kotlin-webmvc/build.gradle
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
12 changes: 6 additions & 6 deletions samples/kotlin-webmvc/generated-docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1130,7 +1130,7 @@ <h4 id="_example_request"><a class="anchor" href="#_example_request"></a><a clas
<div class="content">
<pre class="highlightjs highlight"><code class="language-bash hljs" data-lang="bash">$ 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"}'</code></pre>
</div>
</div>
Expand Down Expand Up @@ -1367,7 +1367,7 @@ <h4 id="_example_request_2"><a class="anchor" href="#_example_request_2"></a><a
<div class="content">
<pre class="highlightjs highlight"><code class="language-bash hljs" data-lang="bash">$ 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"}'</code></pre>
</div>
</div>
Expand Down Expand Up @@ -1469,7 +1469,7 @@ <h4 id="_example_request_3"><a class="anchor" href="#_example_request_3"></a><a
<div class="listingblock">
<div class="content">
<pre class="highlightjs highlight"><code class="language-bash hljs" data-lang="bash">$ curl 'http://localhost:8080/items/1' -i -X DELETE \
-H 'Authorization: Bearer e74119bc-d372-4c17-9263-931e0349e8ad'</code></pre>
-H 'Authorization: Bearer 9ce711ac-e82c-42aa-8d5a-4c136b06d79b'</code></pre>
</div>
</div>
</div>
Expand Down Expand Up @@ -1957,17 +1957,17 @@ <h4 id="_example_response_5"><a class="anchor" href="#_example_response_5"></a><
"offset" : 0,
"pageSize" : 20,
"pageNumber" : 0,
"paged" : true,
"unpaged" : false
"unpaged" : false,
"paged" : true
},
"total" : 1,
"last" : true,
"totalPages" : 1,
"totalElements" : 1,
"size" : 20,
"number" : 0,
"first" : true,
"numberOfElements" : 1,
"first" : true,
"sort" : {
"orders" : [ ],
"sorted" : false,
Expand Down
2 changes: 1 addition & 1 deletion samples/kotlin-webmvc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<spring-restdocs.version>2.0.2.RELEASE</spring-restdocs.version>
<spring-auto-restdocs.version>2.0.2-SNAPSHOT</spring-auto-restdocs.version>
<spring-auto-restdocs.version>2.0.2</spring-auto-restdocs.version>
<kotlin.version>1.2.60</kotlin.version>
<dokka.version>0.9.16</dokka.version>
<jsonDirectory>${project.build.directory}/generated-javadoc-json</jsonDirectory>
Expand Down
2 changes: 1 addition & 1 deletion samples/shared/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<spring-auto-restdocs.version>2.0.2-SNAPSHOT</spring-auto-restdocs.version>
<spring-auto-restdocs.version>2.0.2</spring-auto-restdocs.version>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion spring-auto-restdocs-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>capital.scalable</groupId>
<artifactId>spring-auto-restdocs-parent</artifactId>
<version>2.0.2-SNAPSHOT</version>
<version>2.0.2</version>
<relativePath>..</relativePath>
</parent>

Expand Down
4 changes: 2 additions & 2 deletions spring-auto-restdocs-docs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>capital.scalable</groupId>
<artifactId>spring-auto-restdocs-parent</artifactId>
<version>2.0.2-SNAPSHOT</version>
<version>2.0.2</version>
<relativePath>..</relativePath>
</parent>

Expand All @@ -18,7 +18,7 @@

<properties>
<docs.dir>${project.basedir}/../docs</docs.dir>
<latestRelease>2.0.1</latestRelease> <!-- change this when releasing 2.0.2-SNAPSHOT -->
<latestRelease>2.0.2</latestRelease> <!-- change this when releasing 2.0.3-SNAPSHOT -->
</properties>

<build>
Expand Down
2 changes: 1 addition & 1 deletion spring-auto-restdocs-dokka-json/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>capital.scalable</groupId>
<artifactId>spring-auto-restdocs-parent</artifactId>
<version>2.0.2-SNAPSHOT</version>
<version>2.0.2</version>
<relativePath>..</relativePath>
</parent>

Expand Down
4 changes: 2 additions & 2 deletions spring-auto-restdocs-json-doclet-jdk9/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<parent>
<groupId>capital.scalable</groupId>
<artifactId>spring-auto-restdocs-parent</artifactId>
<version>2.0.2-SNAPSHOT</version>
<version>2.0.2</version>
<relativePath>..</relativePath>
</parent>

<artifactId>spring-auto-restdocs-json-doclet-jdk9</artifactId>
<version>2.0.2-SNAPSHOT</version>
<version>2.0.2</version>
<packaging>jar</packaging>

<name>Spring Auto REST Docs Json Doclet for JDK9+</name>
Expand Down
2 changes: 1 addition & 1 deletion spring-auto-restdocs-json-doclet/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>capital.scalable</groupId>
<artifactId>spring-auto-restdocs-parent</artifactId>
<version>2.0.2-SNAPSHOT</version>
<version>2.0.2</version>
<relativePath>..</relativePath>
</parent>

Expand Down

0 comments on commit 2279fa0

Please sign in to comment.