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

Commit d91f6a7

Browse files
authored
1.0.11 release (#202)
* v1.0.11 * docs
1 parent ad83b02 commit d91f6a7

File tree

8 files changed

+20
-20
lines changed

8 files changed

+20
-20
lines changed

docs/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -594,7 +594,7 @@ <h3 id="gettingstarted-usage"><a class="link" href="#gettingstarted-usage">Usage
594594
<pre class="highlightjs highlight"><code class="language-xml" data-lang="xml">&lt;dependency&gt;
595595
&lt;groupId&gt;capital.scalable&lt;/groupId&gt;
596596
&lt;artifactId&gt;spring-auto-restdocs-core&lt;/artifactId&gt;
597-
&lt;version&gt;1.0.10&lt;/version&gt;
597+
&lt;version&gt;1.0.11&lt;/version&gt;
598598
&lt;scope&gt;test&lt;/scope&gt; <i class="conum" data-value="1"></i><b>(1)</b>
599599
&lt;/dependency&gt;
600600

@@ -631,7 +631,7 @@ <h3 id="gettingstarted-usage"><a class="link" href="#gettingstarted-usage">Usage
631631
&lt;docletArtifact&gt;
632632
&lt;groupId&gt;capital.scalable&lt;/groupId&gt;
633633
&lt;artifactId&gt;spring-auto-restdocs-json-doclet&lt;/artifactId&gt;
634-
&lt;version&gt;1.0.10&lt;/version&gt;
634+
&lt;version&gt;1.0.11&lt;/version&gt;
635635
&lt;/docletArtifact&gt;
636636
&lt;destDir&gt;generated-javadoc-json&lt;/destDir&gt; <i class="conum" data-value="3"></i><b>(3)</b>
637637
&lt;reportOutputDirectory&gt;${project.build.directory}&lt;/reportOutputDirectory&gt; <i class="conum" data-value="3"></i><b>(3)</b>
@@ -676,8 +676,8 @@ <h3 id="gettingstarted-usage"><a class="link" href="#gettingstarted-usage">Usage
676676
}
677677

678678
dependencies {
679-
testCompile group: 'capital.scalable', name: 'spring-auto-restdocs-core', version: '1.0.10' <i class="conum" data-value="1"></i><b>(1)</b>
680-
jsondoclet group: 'capital.scalable', name: 'spring-auto-restdocs-json-doclet', version: '1.0.10'
679+
testCompile group: 'capital.scalable', name: 'spring-auto-restdocs-core', version: '1.0.11' <i class="conum" data-value="1"></i><b>(1)</b>
680+
jsondoclet group: 'capital.scalable', name: 'spring-auto-restdocs-json-doclet', version: '1.0.11'
681681
}
682682

683683
task jsonDoclet(type: Javadoc, dependsOn: compileJava) {
@@ -1840,7 +1840,7 @@ <h4 id="contributing-building-build"><a class="link" href="#contributing-buildin
18401840
</div>
18411841
<div id="footer">
18421842
<div id="footer-text">
1843-
Last updated 2018-01-09 13:17:48 CET
1843+
Last updated 2018-01-10 11:55:15 CET
18441844
</div>
18451845
</div>
18461846
<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>1.0.11-SNAPSHOT</version>
8+
<version>1.0.11</version>
99
<packaging>pom</packaging>
1010

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

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>1.0.11-SNAPSHOT</version>
10+
<version>1.0.11</version>
1111
<relativePath>..</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>1.0.11-SNAPSHOT</version>
9+
<version>1.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>1.0.10</latestRelease> <!-- change this when releasing 1.0.11-SNAPSHOT -->
21+
<latestRelease>1.0.11</latestRelease> <!-- change this when releasing 1.0.12-SNAPSHOT -->
2222
</properties>
2323

2424
<build>

spring-auto-restdocs-example/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ apply plugin: "org.springframework.boot"
1717
apply plugin: "org.asciidoctor.convert"
1818

1919
group = "capital.scalable"
20-
version = "1.0.11-SNAPSHOT"
20+
version = "1.0.11"
2121

2222
description = """Spring Auto REST Docs Example Project"""
2323

spring-auto-restdocs-example/generated-docs/index.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1122,7 +1122,7 @@ <h4 id="_example_request"><a class="anchor" href="#_example_request"></a><a clas
11221122
<div class="content">
11231123
<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ curl 'http://localhost:8080/items' -i -X POST \
11241124
-H 'Content-Type: application/json' \
1125-
-H 'Authorization: Bearer d6876398-3ace-4051-bf6f-4d21049d3f6d' \
1125+
-H 'Authorization: Bearer 235dfe5d-9ed3-4c49-ab1d-07539b64a2ce' \
11261126
-d '{"description":"Hot News"}'</code></pre>
11271127
</div>
11281128
</div>
@@ -1359,7 +1359,7 @@ <h4 id="_example_request_2"><a class="anchor" href="#_example_request_2"></a><a
13591359
<div class="content">
13601360
<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ curl 'http://localhost:8080/items/1' -i -X PUT \
13611361
-H 'Content-Type: application/json' \
1362-
-H 'Authorization: Bearer d6876398-3ace-4051-bf6f-4d21049d3f6d' \
1362+
-H 'Authorization: Bearer 235dfe5d-9ed3-4c49-ab1d-07539b64a2ce' \
13631363
-d '{"description":"Hot News"}'</code></pre>
13641364
</div>
13651365
</div>
@@ -1465,7 +1465,7 @@ <h4 id="_example_request_3"><a class="anchor" href="#_example_request_3"></a><a
14651465
<div class="listingblock">
14661466
<div class="content">
14671467
<pre class="highlightjs highlight"><code class="language-bash" data-lang="bash">$ curl 'http://localhost:8080/items/1' -i -X DELETE \
1468-
-H 'Authorization: Bearer d6876398-3ace-4051-bf6f-4d21049d3f6d'</code></pre>
1468+
-H 'Authorization: Bearer 235dfe5d-9ed3-4c49-ab1d-07539b64a2ce'</code></pre>
14691469
</div>
14701470
</div>
14711471
</div>
@@ -1956,13 +1956,13 @@ <h4 id="_example_response_5"><a class="anchor" href="#_example_response_5"></a><
19561956
},
19571957
"total" : 1,
19581958
"totalPages" : 1,
1959-
"totalElements" : 1,
19601959
"last" : true,
1960+
"totalElements" : 1,
19611961
"size" : 20,
19621962
"number" : 0,
19631963
"sort" : null,
1964-
"numberOfElements" : 1,
1965-
"first" : true
1964+
"first" : true,
1965+
"numberOfElements" : 1
19661966
}</code></pre>
19671967
</div>
19681968
</div>
@@ -2537,7 +2537,7 @@ <h4 id="_example_request_response_3"><a class="anchor" href="#_example_request_r
25372537
</div>
25382538
<div id="footer">
25392539
<div id="footer-text">
2540-
Last updated 2018-01-09 13:15:28 CET
2540+
Last updated 2018-01-10 11:52:27 CET
25412541
</div>
25422542
</div>
25432543
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.9.1/styles/github.min.css">

spring-auto-restdocs-example/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-example</artifactId>
16-
<version>1.0.11-SNAPSHOT</version> <!-- not related to spring-auto-restdocs version -->
16+
<version>1.0.11</version> <!-- not related to spring-auto-restdocs version -->
1717

1818
<name>Spring Auto REST Docs Example Project</name>
1919
<description>Example project for Spring Auto REST Docs</description>
@@ -36,7 +36,7 @@
3636
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3737
<start-class>capital.scalable.restdocs.example.Application</start-class>
3838
<spring-restdocs.version>1.2.3.RELEASE</spring-restdocs.version>
39-
<spring-auto-restdocs.version>1.0.11-SNAPSHOT</spring-auto-restdocs.version>
39+
<spring-auto-restdocs.version>1.0.11</spring-auto-restdocs.version>
4040
</properties>
4141

4242
<dependencies>

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>1.0.11-SNAPSHOT</version>
8+
<version>1.0.11</version>
99
<relativePath>..</relativePath>
1010
</parent>
1111

0 commit comments

Comments
 (0)