Skip to content

prepare release 2.0.9 #3276

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 22, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,15 @@ The OpenAPI Specification has undergone several revisions since initial creation

Swagger core Version | Release Date | OpenAPI Spec compatibility | Notes | Status
------------------------- | ------------ | -------------------------- | ----- | ----
2.0.8 (**current stable**)| 2019-04-24 | 3.0 | [tag v2.0.8](https://github.com/swagger-api/swagger-core/tree/v2.0.8) | Supported
2.0.9 (**current stable**)| 2019-08-22 | 3.0 | [tag v2.0.9](https://github.com/swagger-api/swagger-core/tree/v2.0.9) | Supported
2.0.8 | 2019-04-24 | 3.0 | [tag v2.0.8](https://github.com/swagger-api/swagger-core/tree/v2.0.8) | Supported
2.0.7 | 2019-02-18 | 3.0 | [tag v2.0.7](https://github.com/swagger-api/swagger-core/tree/v2.0.7) | Supported
2.0.6 | 2018-11-27 | 3.0 | [tag v2.0.6](https://github.com/swagger-api/swagger-core/tree/v2.0.6) | Supported
2.0.5 | 2018-09-19 | 3.0 | [tag v2.0.5](https://github.com/swagger-api/swagger-core/tree/v2.0.5) | Supported
2.0.4 | 2018-09-05 | 3.0 | [tag v2.0.4](https://github.com/swagger-api/swagger-core/tree/v2.0.4) | Supported
2.0.3 | 2018-08-09 | 3.0 | [tag v2.0.3](https://github.com/swagger-api/swagger-core/tree/v2.0.3) | Supported
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
1.5.23 (**current stable**)| 2019-08-22 | 2.0 | [tag v1.5.23](https://github.com/swagger-api/swagger-core/tree/v1.5.23) | Supported
1.5.22 | 2019-02-18 | 2.0 | [tag v1.5.22](https://github.com/swagger-api/swagger-core/tree/v1.5.22) | Supported
1.5.21 | 2018-08-09 | 2.0 | [tag v1.5.21](https://github.com/swagger-api/swagger-core/tree/v1.5.21) | Supported
1.5.20 | 2018-05-23 | 2.0 | [tag v1.5.20](https://github.com/swagger-api/swagger-core/tree/v1.5.20) | Supported
2.0.2 | 2018-05-23 | 3.0 | [tag v2.0.2](https://github.com/swagger-api/swagger-core/tree/v2.0.2) | Supported
Expand Down Expand Up @@ -57,7 +59,7 @@ You need the following installed and available in your $PATH:
* Jackson 2.4.5 or greater


### To build from source (currently 2.0.9-SNAPSHOT)
### To build from source (currently 2.0.10-SNAPSHOT)
```
# first time building locally
mvn -N
Expand Down
2 changes: 1 addition & 1 deletion modules/swagger-annotations/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-project</artifactId>
<version>2.0.9-SNAPSHOT</version>
<version>2.0.9</version>
<relativePath>../..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion modules/swagger-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-project</artifactId>
<version>2.0.9-SNAPSHOT</version>
<version>2.0.9</version>
<relativePath>../..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
4 changes: 2 additions & 2 deletions modules/swagger-gradle-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

```
plugins {
id "io.swagger.core.v3.swagger-gradle-plugin" version "2.0.9-SNAPSHOT"
id "io.swagger.core.v3.swagger-gradle-plugin" version "2.0.9"
}
```
### Gradle 1.x and 2.0
Expand All @@ -18,7 +18,7 @@ buildscript {
}
}
dependencies {
classpath "io.swagger.core.v3:swagger-gradle-plugin:2.0.9-SNAPSHOT"
classpath "io.swagger.core.v3:swagger-gradle-plugin:2.0.9"
}
}

Expand Down
2 changes: 1 addition & 1 deletion modules/swagger-gradle-plugin/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=2.0.9-SNAPSHOT
version=2.0.9
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public void apply(Project project) {
config.defaultDependencies(new Action<DependencySet>() {
public void execute(DependencySet dependencies) {
dependencies.add(project.getDependencies().create("org.apache.commons:commons-lang3:3.7"));
dependencies.add(project.getDependencies().create("io.swagger.core.v3:swagger-jaxrs2:2.0.9-SNAPSHOT"));
dependencies.add(project.getDependencies().create("io.swagger.core.v3:swagger-jaxrs2:2.0.9"));
dependencies.add(project.getDependencies().create("javax.ws.rs:javax.ws.rs-api:2.1"));
dependencies.add(project.getDependencies().create("javax.servlet:javax.servlet-api:3.1.0"));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public void testSwaggerResolveTask() throws IOException {
"dependencies { \n" +
//" compile configurations.runtime\n" +
" compile group: 'org.apache.commons', name: 'commons-lang3', version:'3.7'\n" +
" compile group: 'io.swagger.core.v3', name: 'swagger-jaxrs2', version:'2.0.9-SNAPSHOT'\n" +
" compile group: 'io.swagger.core.v3', name: 'swagger-jaxrs2', version:'2.0.9'\n" +
" compile group: 'javax.ws.rs', name: 'javax.ws.rs-api', version:'2.1'\n" +
" compile group: 'javax.servlet', name: 'javax.servlet-api', version:'3.1.0'\n" +
" testCompile group: 'com.github.tomakehurst', name: 'wiremock', version:'2.14.0'\n" +
Expand Down
2 changes: 1 addition & 1 deletion modules/swagger-integration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-project</artifactId>
<version>2.0.9-SNAPSHOT</version>
<version>2.0.9</version>
<relativePath>../..</relativePath>
</parent>
<artifactId>swagger-integration</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion modules/swagger-jaxrs2-servlet-initializer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>swagger-project</artifactId>
<groupId>io.swagger.core.v3</groupId>
<version>2.0.9-SNAPSHOT</version>
<version>2.0.9</version>
<relativePath>../../</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion modules/swagger-jaxrs2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>swagger-project</artifactId>
<groupId>io.swagger.core.v3</groupId>
<version>2.0.9-SNAPSHOT</version>
<version>2.0.9</version>
<relativePath>../../</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
6 changes: 3 additions & 3 deletions modules/swagger-maven-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ to `swagger` [configuration property](https://github.com/swagger-api/swagger-cor
<plugin>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-maven-plugin</artifactId>
<version>2.0.9-SNAPSHOT</version>
<version>2.0.9</version>
<configuration>
<outputFileName>openapi</outputFileName>
<outputPath>${project.build.directory}/generatedtest</outputPath>
Expand All @@ -39,7 +39,7 @@ to `swagger` [configuration property](https://github.com/swagger-api/swagger-cor
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-jaxrs2</artifactId>
<version>2.0.9-SNAPSHOT</version>
<version>2.0.9</version>
</dependency>

<dependency>
Expand All @@ -65,7 +65,7 @@ to `swagger` [configuration property](https://github.com/swagger-api/swagger-cor
<plugin>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-maven-plugin</artifactId>
<version>2.0.9-SNAPSHOT</version>
<version>2.0.9</version>
<configuration>
<outputFileName>openapi</outputFileName>
<outputPath>${project.build.directory}/generatedtest</outputPath>
Expand Down
2 changes: 1 addition & 1 deletion modules/swagger-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-project</artifactId>
<version>2.0.9-SNAPSHOT</version>
<version>2.0.9</version>
<relativePath>../..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion modules/swagger-models/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-project</artifactId>
<version>2.0.9-SNAPSHOT</version>
<version>2.0.9</version>
<relativePath>../..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<artifactId>swagger-project</artifactId>
<packaging>pom</packaging>
<name>swagger-project</name>
<version>2.0.9-SNAPSHOT</version>
<version>2.0.9</version>
<url>https://github.com/swagger-api/swagger-core</url>
<scm>
<connection>scm:git:git@github.com:swagger-api/swagger-core.git</connection>
Expand Down