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

Commit 259e879

Browse files
authored
2.0.6-SNAPSHOT (#321)
1 parent bad44d9 commit 259e879

File tree

14 files changed

+19
-19
lines changed

14 files changed

+19
-19
lines changed

README.md

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

2323
## Documentation
2424

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

27-
[Current 1.0.14 release](https://htmlpreview.github.io/?https://github.com/ScaCap/spring-auto-restdocs/blob/v1.0.14/docs/index.html) reference guide (based on Spring REST Docs 1.x).
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).
2828

29-
Latest master [2.0.5](https://scacap.github.io/spring-auto-restdocs) reference guide.
29+
Latest master [2.0.6-SNAPSHOT](https://scacap.github.io/spring-auto-restdocs) reference guide.
3030

3131
Older releases:
32-
[2.0.3](https://htmlpreview.github.io/?https://github.com/ScaCap/spring-auto-restdocs/blob/v2.0.3/docs/index.html),
33-
[1.0.13](https://htmlpreview.github.io/?https://github.com/ScaCap/spring-auto-restdocs/blob/v1.0.13/docs/index.html)
32+
[2.0.4](https://htmlpreview.github.io/?https://github.com/ScaCap/spring-auto-restdocs/blob/v2.0.4/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)
3434

3535
## Main features
3636

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.5</version>
8+
<version>2.0.6-SNAPSHOT</version>
99
<packaging>pom</packaging>
1010

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

samples/java-webflux/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.3.RELEASE</spring-restdocs.version>
38-
<spring-auto-restdocs.version>2.0.5</spring-auto-restdocs.version>
38+
<spring-auto-restdocs.version>2.0.6-SNAPSHOT</spring-auto-restdocs.version>
3939
</properties>
4040

4141
<dependencies>

samples/java-webmvc/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
ext {
3-
springAutoRestDocsVersion = "2.0.5"
3+
springAutoRestDocsVersion = "2.0.6-SNAPSHOT"
44
springRestDocsVersion = "2.0.3.RELEASE"
55
springBootVersion = "2.1.3.RELEASE"
66
}

samples/java-webmvc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.3.RELEASE</spring-restdocs.version>
38-
<spring-auto-restdocs.version>2.0.5</spring-auto-restdocs.version>
38+
<spring-auto-restdocs.version>2.0.6-SNAPSHOT</spring-auto-restdocs.version>
3939
</properties>
4040

4141
<dependencies>

samples/kotlin-webmvc/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
buildscript {
22
ext {
33
kotlinVersion = "1.3.21"
4-
springAutoRestDocsVersion = "2.0.5"
4+
springAutoRestDocsVersion = "2.0.6-SNAPSHOT"
55
springRestDocsVersion = "2.0.3.RELEASE"
66
springBootVersion = "2.1.3.RELEASE"
77
dokkaVersion = "0.9.18"

samples/kotlin-webmvc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<properties>
3535
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3636
<spring-restdocs.version>2.0.3.RELEASE</spring-restdocs.version>
37-
<spring-auto-restdocs.version>2.0.5</spring-auto-restdocs.version>
37+
<spring-auto-restdocs.version>2.0.6-SNAPSHOT</spring-auto-restdocs.version>
3838
<kotlin.version>1.3.21</kotlin.version>
3939
<dokka.version>0.9.18</dokka.version>
4040
<jsonDirectory>${project.build.directory}/generated-javadoc-json</jsonDirectory>

samples/shared/pom.xml

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

3434
<properties>
3535
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
36-
<spring-auto-restdocs.version>2.0.5</spring-auto-restdocs.version>
36+
<spring-auto-restdocs.version>2.0.6-SNAPSHOT</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.5</version>
10+
<version>2.0.6-SNAPSHOT</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.5</version>
10+
<version>2.0.6-SNAPSHOT</version>
1111
<relativePath>..</relativePath>
1212
</parent>
1313

0 commit comments

Comments
 (0)