Skip to content

Commit debe4bf

Browse files
authored
Merge pull request #3127 from swagger-api/prepare-release-2.0.7
prepare release 2.0.7
2 parents e7a5dd5 + 7a53405 commit debe4bf

File tree

15 files changed

+22
-20
lines changed

15 files changed

+22
-20
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,15 @@ The [github wiki](https://github.com/swagger-api/swagger-core/wiki) contains doc
1515
## Compatibility
1616
The OpenAPI Specification has undergone several revisions since initial creation in 2010. The Swagger Core project has the following compatibilities with the OpenAPI Specification:
1717

18-
Swagger Core Version | Release Date | OpenAPI Spec compatibility | Notes | Status
18+
Swagger core Version | Release Date | OpenAPI Spec compatibility | Notes | Status
1919
------------------------- | ------------ | -------------------------- | ----- | ----
20-
2.0.6 (**current stable**)| 2018-11-27 | 3.0 | [tag v2.0.6](https://github.com/swagger-api/swagger-core/tree/v2.0.6) | Supported
20+
2.0.7 (**current stable**)| 2019-02-18 | 3.0 | [tag v2.0.7](https://github.com/swagger-api/swagger-core/tree/v2.0.7) | Supported
21+
2.0.6 | 2018-11-27 | 3.0 | [tag v2.0.6](https://github.com/swagger-api/swagger-core/tree/v2.0.6) | Supported
2122
2.0.5 | 2018-09-19 | 3.0 | [tag v2.0.5](https://github.com/swagger-api/swagger-core/tree/v2.0.5) | Supported
2223
2.0.4 | 2018-09-05 | 3.0 | [tag v2.0.4](https://github.com/swagger-api/swagger-core/tree/v2.0.4) | Supported
2324
2.0.3 | 2018-08-09 | 3.0 | [tag v2.0.3](https://github.com/swagger-api/swagger-core/tree/v2.0.3) | Supported
24-
1.5.21 (**current stable**)| 2018-08-09 | 2.0 | [tag v1.5.21](https://github.com/swagger-api/swagger-core/tree/v1.5.21) | Supported
25+
1.5.22 (**current stable**)| 2019-02-18 | 2.0 | [tag v1.5.22](https://github.com/swagger-api/swagger-core/tree/v1.5.22) | Supported
26+
1.5.21 | 2018-08-09 | 2.0 | [tag v1.5.21](https://github.com/swagger-api/swagger-core/tree/v1.5.21) | Supported
2527
1.5.20 | 2018-05-23 | 2.0 | [tag v1.5.20](https://github.com/swagger-api/swagger-core/tree/v1.5.20) | Supported
2628
2.0.2 | 2018-05-23 | 3.0 | [tag v2.0.2](https://github.com/swagger-api/swagger-core/tree/v2.0.2) | Supported
2729
2.0.1 | 2018-04-16 | 3.0 | [tag v2.0.1](https://github.com/swagger-api/swagger-core/tree/v2.0.1) | Supported
@@ -50,7 +52,7 @@ You need the following installed and available in your $PATH:
5052
* Jackson 2.4.5 or greater
5153

5254

53-
### To build from source (currently 2.0.7-SNAPSHOT)
55+
### To build from source (currently 2.0.8-SNAPSHOT)
5456
```
5557
# first time building locally
5658
mvn -N

modules/swagger-annotations/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>io.swagger.core.v3</groupId>
55
<artifactId>swagger-project</artifactId>
6-
<version>2.0.7-SNAPSHOT</version>
6+
<version>2.0.7</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

modules/swagger-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>io.swagger.core.v3</groupId>
55
<artifactId>swagger-project</artifactId>
6-
<version>2.0.7-SNAPSHOT</version>
6+
<version>2.0.7</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

modules/swagger-gradle-plugin/README.md

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

66
```
77
plugins {
8-
id "io.swagger.core.v3.swagger-gradle-plugin" version "2.0.7-SNAPSHOT"
8+
id "io.swagger.core.v3.swagger-gradle-plugin" version "2.0.7"
99
}
1010
```
1111
### Gradle 1.x and 2.0
@@ -18,7 +18,7 @@ buildscript {
1818
}
1919
}
2020
dependencies {
21-
classpath "gradle.plugin.io.swagger.core.v3.swagger-gradle-plugin:2.0.7-SNAPSHOT"
21+
classpath "gradle.plugin.io.swagger.core.v3.swagger-gradle-plugin:2.0.7"
2222
}
2323
}
2424

modules/swagger-gradle-plugin/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ repositories {
2424
dependencies {
2525
compile gradleApi()
2626
compile group: 'org.apache.commons', name: 'commons-lang3', version:'3.7'
27-
compile group: 'io.swagger.core.v3', name: 'swagger-jaxrs2', version:'2.0.7-SNAPSHOT'
27+
compile group: 'io.swagger.core.v3', name: 'swagger-jaxrs2', version:'2.0.7'
2828
compile group: 'javax.ws.rs', name: 'javax.ws.rs-api', version:'2.1'
2929
compile group: 'javax.servlet', name: 'javax.servlet-api', version:'3.1.0'
3030
testCompile group: 'com.github.tomakehurst', name: 'wiremock', version:'2.14.0'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=2.0.7-SNAPSHOT
1+
version=2.0.7

modules/swagger-gradle-plugin/src/main/java/io/swagger/v3/plugins/gradle/SwaggerPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public void apply(Project project) {
1616
config.defaultDependencies(new Action<DependencySet>() {
1717
public void execute(DependencySet dependencies) {
1818
dependencies.add(project.getDependencies().create("org.apache.commons:commons-lang3:3.7"));
19-
dependencies.add(project.getDependencies().create("io.swagger.core.v3:swagger-jaxrs2:2.0.7-SNAPSHOT"));
19+
dependencies.add(project.getDependencies().create("io.swagger.core.v3:swagger-jaxrs2:2.0.7"));
2020
dependencies.add(project.getDependencies().create("javax.ws.rs:javax.ws.rs-api:2.1"));
2121
dependencies.add(project.getDependencies().create("javax.servlet:javax.servlet-api:3.1.0"));
2222
}

modules/swagger-gradle-plugin/src/test/java/io/swagger/v3/plugins/gradle/SwaggerResolveTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public void testSwaggerResolveTask() throws IOException {
8383
"dependencies { \n" +
8484
//" compile configurations.runtime\n" +
8585
" compile group: 'org.apache.commons', name: 'commons-lang3', version:'3.7'\n" +
86-
" compile group: 'io.swagger.core.v3', name: 'swagger-jaxrs2', version:'2.0.7-SNAPSHOT'\n" +
86+
" compile group: 'io.swagger.core.v3', name: 'swagger-jaxrs2', version:'2.0.7'\n" +
8787
" compile group: 'javax.ws.rs', name: 'javax.ws.rs-api', version:'2.1'\n" +
8888
" compile group: 'javax.servlet', name: 'javax.servlet-api', version:'3.1.0'\n" +
8989
" testCompile group: 'com.github.tomakehurst', name: 'wiremock', version:'2.14.0'\n" +

modules/swagger-integration/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.swagger.core.v3</groupId>
88
<artifactId>swagger-project</artifactId>
9-
<version>2.0.7-SNAPSHOT</version>
9+
<version>2.0.7</version>
1010
<relativePath>../..</relativePath>
1111
</parent>
1212
<artifactId>swagger-integration</artifactId>

modules/swagger-jaxrs2-servlet-initializer/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>swagger-project</artifactId>
77
<groupId>io.swagger.core.v3</groupId>
8-
<version>2.0.7-SNAPSHOT</version>
8+
<version>2.0.7</version>
99
<relativePath>../../</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>

0 commit comments

Comments
 (0)