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

Commit 952ffd0

Browse files
committed
1.0.6 release
1 parent 0f00d47 commit 952ffd0

File tree

7 files changed

+1139
-53
lines changed

7 files changed

+1139
-53
lines changed

docs/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,7 @@ <h3 id="gettingstarted-usage"><a class="link" href="#gettingstarted-usage">Usage
575575
<pre class="highlightjs highlight"><code class="language-xml" data-lang="xml">&lt;dependency&gt;
576576
&lt;groupId&gt;capital.scalable&lt;/groupId&gt;
577577
&lt;artifactId&gt;spring-auto-restdocs-core&lt;/artifactId&gt;
578-
&lt;version&gt;1.0.5&lt;/version&gt;
578+
&lt;version&gt;1.0.6&lt;/version&gt;
579579
&lt;scope&gt;test&lt;/scope&gt; <i class="conum" data-value="1"></i><b>(1)</b>
580580
&lt;/dependency&gt;
581581

@@ -613,7 +613,7 @@ <h3 id="gettingstarted-usage"><a class="link" href="#gettingstarted-usage">Usage
613613
&lt;docletArtifact&gt;
614614
&lt;groupId&gt;capital.scalable&lt;/groupId&gt;
615615
&lt;artifactId&gt;spring-auto-restdocs-json-doclet&lt;/artifactId&gt;
616-
&lt;version&gt;1.0.5&lt;/version&gt;
616+
&lt;version&gt;1.0.6&lt;/version&gt;
617617
&lt;/docletArtifact&gt;
618618
&lt;destDir&gt;generated-javadoc-json&lt;/destDir&gt;
619619
&lt;reportOutputDirectory&gt;${project.build.directory}&lt;/reportOutputDirectory&gt;
@@ -652,8 +652,8 @@ <h3 id="gettingstarted-usage"><a class="link" href="#gettingstarted-usage">Usage
652652
}
653653

654654
dependencies {
655-
testCompile group: 'capital.scalable', name: 'spring-auto-restdocs-core', version: '1.0.5' <i class="conum" data-value="2"></i><b>(2)</b>
656-
jsondoclet group: 'capital.scalable', name: 'spring-auto-restdocs-json-doclet', version: '1.0.5'
655+
testCompile group: 'capital.scalable', name: 'spring-auto-restdocs-core', version: '1.0.6' <i class="conum" data-value="2"></i><b>(2)</b>
656+
jsondoclet group: 'capital.scalable', name: 'spring-auto-restdocs-json-doclet', version: '1.0.6'
657657
}
658658

659659
task jsonDoclet(type: Javadoc, dependsOn: compileJava) {
@@ -1498,7 +1498,7 @@ <h4 id="contributing-building-build"><a class="link" href="#contributing-buildin
14981498
</div>
14991499
<div id="footer">
15001500
<div id="footer-text">
1501-
Last updated 2017-02-28 13:27:02 CET
1501+
Last updated 2017-03-01 19:17:18 CET
15021502
</div>
15031503
</div>
15041504
<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.6-SNAPSHOT</version>
8+
<version>1.0.6</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.6-SNAPSHOT</version>
10+
<version>1.0.6</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.6-SNAPSHOT</version>
9+
<version>1.0.6</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.5</latestRelease>
21+
<latestRelease>1.0.6</latestRelease>
2222
</properties>
2323

2424
<build>

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

Lines changed: 1127 additions & 41 deletions
Large diffs are not rendered by default.

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.6-SNAPSHOT</version> <!-- not related to actual project version -->
16+
<version>1.0.6</version> <!-- not related to actual project version -->
1717

1818
<name>Spring Auto REST Docs Example Project</name>
1919
<description>Example project for Spring Auto REST Docs</description>
@@ -24,7 +24,7 @@
2424
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2525
<snippetsDirectory>${project.build.directory}/generated-snippets</snippetsDirectory>
2626
<start-class>capital.scalable.restdocs.example.Application</start-class>
27-
<spring-auto-restdocs.version>1.0.6-SNAPSHOT</spring-auto-restdocs.version>
27+
<spring-auto-restdocs.version>1.0.6</spring-auto-restdocs.version>
2828
</properties>
2929

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

0 commit comments

Comments
 (0)