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

Commit 8268a62

Browse files
authored
2.0.11 release (#446)
1 parent 8e8a041 commit 8268a62

File tree

18 files changed

+44
-48
lines changed

18 files changed

+44
-48
lines changed

README.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,11 @@ from the Introducing Spring Auto REST Docs talk at Spring IO 2017 are also avail
2222

2323
## Documentation
2424

25-
[Current 2.0.10 release](https://htmlpreview.github.io/?https://github.com/ScaCap/spring-auto-restdocs/blob/v2.0.10/docs/index.html) reference guide (based on Spring REST Docs 2.x).
25+
[Current 2.0.11 release](https://htmlpreview.github.io/?https://github.com/ScaCap/spring-auto-restdocs/blob/v2.0.11/docs/index.html) reference guide (based on Spring REST Docs 2.x).
2626

27-
[Current 1.0.15 release](https://htmlpreview.github.io/?https://github.com/ScaCap/spring-auto-restdocs/blob/v1.0.15/docs/index.html) reference guide (based on Spring REST Docs 1.x).
27+
[Legacy 1.0.15 release](https://htmlpreview.github.io/?https://github.com/ScaCap/spring-auto-restdocs/blob/v1.0.15/docs/index.html) reference guide (based on Spring REST Docs 1.x).
2828

29-
Latest master [2.0.11-SNAPSHOT](https://scacap.github.io/spring-auto-restdocs) reference guide.
30-
31-
Older releases:
32-
[2.0.9](https://htmlpreview.github.io/?https://github.com/ScaCap/spring-auto-restdocs/blob/v2.0.9/docs/index.html),
33-
[1.0.14](https://htmlpreview.github.io/?https://github.com/ScaCap/spring-auto-restdocs/blob/v1.0.14/docs/index.html)
29+
Latest master [2.0.12-SNAPSHOT](https://scacap.github.io/spring-auto-restdocs) reference guide.
3430

3531
## Main features
3632

docs/index.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@
443443
<h1>Spring Auto REST Docs</h1>
444444
<div class="details">
445445
<span id="author" class="author">Scalable Capital</span><br>
446-
<span id="revnumber">version 2.0.10</span>
446+
<span id="revnumber">version 2.0.11</span>
447447
</div>
448448
<div id="toc" class="toc2">
449449
<div id="toctitle">Table of Contents</div>
@@ -668,7 +668,7 @@ <h3 id="gettingstarted-usage"><a class="link" href="#gettingstarted-usage">Usage
668668
<pre class="highlightjs highlight"><code data-lang="xml" class="language-xml hljs">&lt;dependency&gt;
669669
&lt;groupId&gt;capital.scalable&lt;/groupId&gt;
670670
&lt;artifactId&gt;spring-auto-restdocs-core&lt;/artifactId&gt;
671-
&lt;version&gt;2.0.10&lt;/version&gt;
671+
&lt;version&gt;2.0.11&lt;/version&gt;
672672
&lt;scope&gt;test&lt;/scope&gt;
673673
&lt;/dependency&gt;
674674

@@ -705,7 +705,7 @@ <h3 id="gettingstarted-usage"><a class="link" href="#gettingstarted-usage">Usage
705705
&lt;docletArtifact&gt;
706706
&lt;groupId&gt;capital.scalable&lt;/groupId&gt;
707707
&lt;artifactId&gt;spring-auto-restdocs-json-doclet&lt;/artifactId&gt; <i class="conum" data-value="3"></i><b>(3)</b>
708-
&lt;version&gt;2.0.10&lt;/version&gt;
708+
&lt;version&gt;2.0.11&lt;/version&gt;
709709
&lt;/docletArtifact&gt;
710710
&lt;destDir&gt;generated-javadoc-json&lt;/destDir&gt; <i class="conum" data-value="2"></i><b>(2)</b>
711711
&lt;reportOutputDirectory&gt;${project.build.directory}&lt;/reportOutputDirectory&gt; <i class="conum" data-value="2"></i><b>(2)</b>
@@ -750,8 +750,8 @@ <h3 id="gettingstarted-usage"><a class="link" href="#gettingstarted-usage">Usage
750750
}
751751

752752
dependencies {
753-
testCompile group: 'capital.scalable', name: 'spring-auto-restdocs-core', version: '2.0.10'
754-
jsondoclet group: 'capital.scalable', name: 'spring-auto-restdocs-json-doclet', version: '2.0.10' <i class="conum" data-value="3"></i><b>(3)</b>
753+
testCompile group: 'capital.scalable', name: 'spring-auto-restdocs-core', version: '2.0.11'
754+
jsondoclet group: 'capital.scalable', name: 'spring-auto-restdocs-json-doclet', version: '2.0.11' <i class="conum" data-value="3"></i><b>(3)</b>
755755
}
756756

757757
task jsonDoclet(type: Javadoc, dependsOn: compileJava) {
@@ -2636,8 +2636,8 @@ <h4 id="contributing-building-build"><a class="link" href="#contributing-buildin
26362636
</div>
26372637
<div id="footer">
26382638
<div id="footer-text">
2639-
Version 2.0.10<br>
2640-
Last updated 2021-03-16 16:22:34 +0100
2639+
Version 2.0.11<br>
2640+
Last updated 2021-04-19 11:26:36 +0200
26412641
</div>
26422642
</div>
26432643
<link rel="stylesheet" href="highlight/styles/github.min.css">

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>capital.scalable</groupId>
77
<artifactId>spring-auto-restdocs-parent</artifactId>
8-
<version>2.0.11-SNAPSHOT</version>
8+
<version>2.0.11</version>
99
<packaging>pom</packaging>
1010

1111
<name>Spring Auto REST Docs Parent POM</name>

samples/java-webflux/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
<groupId>capital.scalable</groupId>
1515
<artifactId>spring-auto-restdocs-java-webflux-example</artifactId>
16-
<version>2.0.11-SNAPSHOT</version>
16+
<version>2.0.11</version>
1717

1818
<name>Spring Auto REST Docs Java WebFlux Example Project</name>
1919
<description>Example project for Spring Auto REST Docs</description>
@@ -35,7 +35,7 @@
3535
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3636
<start-class>capital.scalable.restdocs.example.Application</start-class>
3737
<spring-restdocs.version>2.0.5.RELEASE</spring-restdocs.version>
38-
<spring-auto-restdocs.version>2.0.11-SNAPSHOT</spring-auto-restdocs.version>
38+
<spring-auto-restdocs.version>2.0.11</spring-auto-restdocs.version>
3939
</properties>
4040

4141
<dependencies>

samples/java-webmvc/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
ext {
3-
springAutoRestDocsVersion = "2.0.11-SNAPSHOT"
3+
springAutoRestDocsVersion = "2.0.11"
44
springRestDocsVersion = "2.0.5.RELEASE"
55
springBootVersion = "2.3.3.RELEASE"
66
}
@@ -20,7 +20,7 @@ apply plugin: "io.spring.dependency-management"
2020
apply plugin: "org.asciidoctor.convert"
2121

2222
group = "capital.scalable"
23-
version = "2.0.11-SNAPSHOT"
23+
version = "2.0.11"
2424

2525
description = """Spring Auto REST Docs Java Web MVC Example Project"""
2626

samples/java-webmvc/generated-docs/index.html

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1207,7 +1207,7 @@ <h4 id="_example_request"><a class="anchor" href="#_example_request"></a><a clas
12071207
<div class="content">
12081208
<pre class="highlightjs highlight"><code data-lang="bash" class="language-bash hljs">$ curl 'http://localhost:8080/items' -i -X POST \
12091209
-H 'Content-Type: application/json' \
1210-
-H 'Authorization: Bearer d74be716-632c-47f7-a9db-c17f6a5d1ab4' \
1210+
-H 'Authorization: Bearer 112cb9f3-ba58-4c11-b6e2-b5c1fe4a47e3' \
12111211
-d '{"description":"Hot News"}'</code></pre>
12121212
</div>
12131213
</div>
@@ -1470,7 +1470,7 @@ <h4 id="_example_request_2"><a class="anchor" href="#_example_request_2"></a><a
14701470
<div class="content">
14711471
<pre class="highlightjs highlight"><code data-lang="bash" class="language-bash hljs">$ curl 'http://localhost:8080/items/1' -i -X PUT \
14721472
-H 'Content-Type: application/json' \
1473-
-H 'Authorization: Bearer d74be716-632c-47f7-a9db-c17f6a5d1ab4' \
1473+
-H 'Authorization: Bearer 112cb9f3-ba58-4c11-b6e2-b5c1fe4a47e3' \
14741474
-d '{"description":"Hot News"}'</code></pre>
14751475
</div>
14761476
</div>
@@ -1588,7 +1588,7 @@ <h4 id="_example_request_3"><a class="anchor" href="#_example_request_3"></a><a
15881588
<div class="listingblock">
15891589
<div class="content">
15901590
<pre class="highlightjs highlight"><code data-lang="bash" class="language-bash hljs">$ curl 'http://localhost:8080/items/1' -i -X DELETE \
1591-
-H 'Authorization: Bearer d74be716-632c-47f7-a9db-c17f6a5d1ab4'</code></pre>
1591+
-H 'Authorization: Bearer 112cb9f3-ba58-4c11-b6e2-b5c1fe4a47e3'</code></pre>
15921592
</div>
15931593
</div>
15941594
</div>
@@ -2130,20 +2130,20 @@ <h4 id="_example_response_5"><a class="anchor" href="#_example_response_5"></a><
21302130
"unsorted" : true,
21312131
"empty" : true
21322132
},
2133+
"offset" : 0,
21332134
"pageNumber" : 0,
21342135
"pageSize" : 20,
2135-
"offset" : 0,
2136-
"paged" : true,
2137-
"unpaged" : false
2136+
"unpaged" : false,
2137+
"paged" : true
21382138
},
21392139
"total" : 1,
2140+
"last" : true,
21402141
"totalPages" : 1,
21412142
"totalElements" : 1,
2142-
"last" : true,
2143+
"numberOfElements" : 1,
21432144
"size" : 20,
21442145
"number" : 0,
21452146
"first" : true,
2146-
"numberOfElements" : 1,
21472147
"sort" : {
21482148
"orders" : [ ],
21492149
"sorted" : false,
@@ -3623,7 +3623,7 @@ <h4 id="_example_request_13"><a class="anchor" href="#_example_request_13"></a><
36233623
<div class="content">
36243624
<pre class="highlightjs highlight"><code data-lang="bash" class="language-bash hljs">$ curl 'http://localhost:8080/items/filtered/1' -i -X PUT \
36253625
-H 'Content-Type: application/json' \
3626-
-H 'Authorization: Bearer d74be716-632c-47f7-a9db-c17f6a5d1ab4' \
3626+
-H 'Authorization: Bearer 112cb9f3-ba58-4c11-b6e2-b5c1fe4a47e3' \
36273627
-d '{"description":"Hot News"}'</code></pre>
36283628
</div>
36293629
</div>

samples/java-webmvc/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
<groupId>capital.scalable</groupId>
1515
<artifactId>spring-auto-restdocs-java-webmvc-example</artifactId>
16-
<version>2.0.11-SNAPSHOT</version>
16+
<version>2.0.11</version>
1717

1818
<name>Spring Auto REST Docs Java Web MVC Example Project</name>
1919
<description>Example project for Spring Auto REST Docs</description>
@@ -35,7 +35,7 @@
3535
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3636
<start-class>capital.scalable.restdocs.example.Application</start-class>
3737
<spring-restdocs.version>2.0.5.RELEASE</spring-restdocs.version>
38-
<spring-auto-restdocs.version>2.0.11-SNAPSHOT</spring-auto-restdocs.version>
38+
<spring-auto-restdocs.version>2.0.11</spring-auto-restdocs.version>
3939
</properties>
4040

4141
<dependencies>

samples/kotlin-webmvc/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
buildscript {
22
ext {
33
kotlinVersion = "1.4.0"
4-
springAutoRestDocsVersion = "2.0.11-SNAPSHOT"
4+
springAutoRestDocsVersion = "2.0.11"
55
springRestDocsVersion = "2.0.5.RELEASE"
66
springBootVersion = "2.3.3.RELEASE"
77
dokkaPluginVersion = "0.10.1"
@@ -29,7 +29,7 @@ apply plugin: "org.asciidoctor.convert"
2929
apply plugin: "org.jetbrains.dokka"
3030

3131
group = "capital.scalable"
32-
version = "2.0.11-SNAPSHOT"
32+
version = "2.0.11"
3333

3434
description = """Spring Auto REST Docs Kotlin Web MVC Example Project"""
3535

samples/kotlin-webmvc/generated-docs/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1156,7 +1156,7 @@ <h4 id="_example_request"><a class="anchor" href="#_example_request"></a><a clas
11561156
<div class="content">
11571157
<pre class="highlightjs highlight"><code data-lang="bash" class="language-bash hljs">$ curl 'http://localhost:8080/items' -i -X POST \
11581158
-H 'Content-Type: application/json' \
1159-
-H 'Authorization: Bearer f0e896b0-5828-408d-b583-c2e467b62f83' \
1159+
-H 'Authorization: Bearer 9a053af6-24a0-43be-b396-856e1dd9de77' \
11601160
-d '{"description":"Hot News"}'</code></pre>
11611161
</div>
11621162
</div>
@@ -1399,7 +1399,7 @@ <h4 id="_example_request_2"><a class="anchor" href="#_example_request_2"></a><a
13991399
<div class="content">
14001400
<pre class="highlightjs highlight"><code data-lang="bash" class="language-bash hljs">$ curl 'http://localhost:8080/items/1' -i -X PUT \
14011401
-H 'Content-Type: application/json' \
1402-
-H 'Authorization: Bearer f0e896b0-5828-408d-b583-c2e467b62f83' \
1402+
-H 'Authorization: Bearer 9a053af6-24a0-43be-b396-856e1dd9de77' \
14031403
-d '{"description":"Hot News"}'</code></pre>
14041404
</div>
14051405
</div>
@@ -1501,7 +1501,7 @@ <h4 id="_example_request_3"><a class="anchor" href="#_example_request_3"></a><a
15011501
<div class="listingblock">
15021502
<div class="content">
15031503
<pre class="highlightjs highlight"><code data-lang="bash" class="language-bash hljs">$ curl 'http://localhost:8080/items/1' -i -X DELETE \
1504-
-H 'Authorization: Bearer f0e896b0-5828-408d-b583-c2e467b62f83'</code></pre>
1504+
-H 'Authorization: Bearer 9a053af6-24a0-43be-b396-856e1dd9de77'</code></pre>
15051505
</div>
15061506
</div>
15071507
</div>
@@ -1999,9 +1999,9 @@ <h4 id="_example_response_5"><a class="anchor" href="#_example_response_5"></a><
19991999
"unsorted" : true,
20002000
"empty" : true
20012001
},
2002-
"offset" : 0,
20032002
"pageNumber" : 0,
20042003
"pageSize" : 20,
2004+
"offset" : 0,
20052005
"paged" : true,
20062006
"unpaged" : false
20072007
},

samples/kotlin-webmvc/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
<groupId>capital.scalable</groupId>
1515
<artifactId>spring-auto-restdocs-kotlin-webmvc-example</artifactId>
16-
<version>2.0.11-SNAPSHOT</version>
16+
<version>2.0.11</version>
1717

1818
<name>Spring Auto REST Docs Kotlin Web MVC Example Project</name>
1919
<description>Example project for Spring Auto REST Docs</description>
@@ -34,7 +34,7 @@
3434
<properties>
3535
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3636
<spring-restdocs.version>2.0.5.RELEASE</spring-restdocs.version>
37-
<spring-auto-restdocs.version>2.0.11-SNAPSHOT</spring-auto-restdocs.version>
37+
<spring-auto-restdocs.version>2.0.11</spring-auto-restdocs.version>
3838
<kotlin.version>1.4.0</kotlin.version>
3939
<dokka.version>0.10.1</dokka.version>
4040
<jsonDirectory>${project.build.directory}/generated-javadoc-json</jsonDirectory>

samples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>capital.scalable</groupId>
88
<artifactId>spring-auto-restdocs-samples</artifactId>
9-
<version>2.0.11-SNAPSHOT</version>
9+
<version>2.0.11</version>
1010

1111
<packaging>pom</packaging>
1212

samples/shared/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
<groupId>capital.scalable</groupId>
1515
<artifactId>spring-auto-restdocs-shared-pojos-example</artifactId>
16-
<version>2.0.11-SNAPSHOT</version>
16+
<version>2.0.11</version>
1717

1818
<name>Spring Auto REST Docs Shared POJOs Example Project</name>
1919
<description>Example project for Shared POJOs inside Spring Auto REST Docs</description>
@@ -33,7 +33,7 @@
3333

3434
<properties>
3535
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
36-
<spring-auto-restdocs.version>2.0.11-SNAPSHOT</spring-auto-restdocs.version>
36+
<spring-auto-restdocs.version>2.0.11</spring-auto-restdocs.version>
3737
</properties>
3838

3939
<dependencies>

spring-auto-restdocs-annotations/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>capital.scalable</groupId>
99
<artifactId>spring-auto-restdocs-parent</artifactId>
10-
<version>2.0.11-SNAPSHOT</version>
10+
<version>2.0.11</version>
1111
<relativePath>..</relativePath>
1212
</parent>
1313

spring-auto-restdocs-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>capital.scalable</groupId>
99
<artifactId>spring-auto-restdocs-parent</artifactId>
10-
<version>2.0.11-SNAPSHOT</version>
10+
<version>2.0.11</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

spring-auto-restdocs-docs/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>capital.scalable</groupId>
88
<artifactId>spring-auto-restdocs-parent</artifactId>
9-
<version>2.0.11-SNAPSHOT</version>
9+
<version>2.0.11</version>
1010
<relativePath>..</relativePath>
1111
</parent>
1212

@@ -18,7 +18,7 @@
1818

1919
<properties>
2020
<docs.dir>${project.basedir}/../docs</docs.dir>
21-
<latestRelease>2.0.10</latestRelease> <!-- change this when releasing 2.0.11-SNAPSHOT -->
21+
<latestRelease>2.0.11</latestRelease> <!-- change this when releasing 2.0.12-SNAPSHOT -->
2222
</properties>
2323

2424
<build>

spring-auto-restdocs-dokka-json/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>capital.scalable</groupId>
77
<artifactId>spring-auto-restdocs-parent</artifactId>
8-
<version>2.0.11-SNAPSHOT</version>
8+
<version>2.0.11</version>
99
<relativePath>..</relativePath>
1010
</parent>
1111

spring-auto-restdocs-json-doclet-jdk9/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>capital.scalable</groupId>
77
<artifactId>spring-auto-restdocs-parent</artifactId>
8-
<version>2.0.11-SNAPSHOT</version>
8+
<version>2.0.11</version>
99
<relativePath>..</relativePath>
1010
</parent>
1111

spring-auto-restdocs-json-doclet/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>capital.scalable</groupId>
77
<artifactId>spring-auto-restdocs-parent</artifactId>
8-
<version>2.0.11-SNAPSHOT</version>
8+
<version>2.0.11</version>
99
<relativePath>..</relativePath>
1010
</parent>
1111

0 commit comments

Comments
 (0)