Skip to content

Commit 1aa6f1f

Browse files
authored
Merge pull request #3603 from swagger-api/prepare-release-2.1.3
prepare release 2.1.3
2 parents 2237847 + acd8360 commit 1aa6f1f

File tree

13 files changed

+17
-16
lines changed

13 files changed

+17
-16
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ The OpenAPI Specification has undergone several revisions since initial creation
1919

2020
Swagger core Version | Release Date | OpenAPI Spec compatibility | Notes | Status
2121
------------------------- | ------------ | -------------------------- | ----- | ----
22-
2.1.2 (**current stable**)| 2020-04-01 | 3.0 | [tag v2.1.2](https://github.com/swagger-api/swagger-core/tree/v2.1.2) | Supported
22+
2.1.3 (**current stable**)| 2020-06-27 | 3.0 | [tag v2.1.3](https://github.com/swagger-api/swagger-core/tree/v2.1.3) | Supported
23+
2.1.2 | 2020-04-01 | 3.0 | [tag v2.1.2](https://github.com/swagger-api/swagger-core/tree/v2.1.2) | Supported
2324
2.1.1 | 2020-01-02 | 3.0 | [tag v2.1.1](https://github.com/swagger-api/swagger-core/tree/v2.1.1) | Supported
2425
2.1.0 | 2019-11-16 | 3.0 | [tag v2.1.0](https://github.com/swagger-api/swagger-core/tree/v2.1.0) | Supported
2526
2.0.10 | 2019-10-11 | 3.0 | [tag v2.0.10](https://github.com/swagger-api/swagger-core/tree/v2.0.10) | Supported
@@ -64,7 +65,7 @@ You need the following installed and available in your $PATH:
6465
* Jackson 2.4.5 or greater
6566

6667

67-
### To build from source (currently 2.1.3-SNAPSHOT)
68+
### To build from source (currently 2.1.4-SNAPSHOT)
6869
```
6970
# first time building locally
7071
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.1.3-SNAPSHOT</version>
6+
<version>2.1.3</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.1.3-SNAPSHOT</version>
6+
<version>2.1.3</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

modules/swagger-gradle-plugin/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
```
99
plugins {
10-
id "io.swagger.core.v3.swagger-gradle-plugin" version "2.1.3-SNAPSHOT"
10+
id "io.swagger.core.v3.swagger-gradle-plugin" version "2.1.3"
1111
}
1212
```
1313
### Gradle 1.x and 2.0
@@ -24,7 +24,7 @@ buildscript {
2424
}
2525
}
2626
dependencies {
27-
classpath "io.swagger.core.v3:swagger-gradle-plugin:2.1.3-SNAPSHOT"
27+
classpath "io.swagger.core.v3:swagger-gradle-plugin:2.1.3"
2828
}
2929
}
3030
@@ -76,7 +76,7 @@ Parameter | Description | Required | Default
7676
`outputPath`|**DEPRECATED** output path where file(s) are saved|false|
7777

7878

79-
**Note** parameter `openApiFile` corresponds to [config](https://github.com/swagger-api/swagger-core/wiki/Swagger-2.X---Integration-and-Configuration#configuration-properties) openAPI. It points to a location of a file in YAML or JSON format representing the input spec that will be merged with the resolved spec. Typically used to add Info section, or any other meta data.
79+
**Note** parameter `openApiFile` corresponds to [config](https://github.com/swagger-api/swagger-core/wiki/Swagger-2.X---Integration-and-Configuration#configuration-properties) openAPI. It points to a location of a file in YAML or JSON format representing the input spec that will be merged with the resolved spec. Typically used to add Info section, or any other meta data.
8080
An example of such file:
8181

8282
```yaml
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=2.1.3-SNAPSHOT
1+
version=2.1.3

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.1.3-SNAPSHOT"));
19+
dependencies.add(project.getDependencies().create("io.swagger.core.v3:swagger-jaxrs2:2.1.3"));
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-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.1.3-SNAPSHOT</version>
9+
<version>2.1.3</version>
1010
<relativePath>../..</relativePath>
1111
</parent>
1212
<artifactId>swagger-integration</artifactId>

modules/swagger-jaxrs2-servlet-initializer-v2/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.1.3-SNAPSHOT</version>
8+
<version>2.1.3</version>
99
<relativePath>../../</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>

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.1.3-SNAPSHOT</version>
8+
<version>2.1.3</version>
99
<relativePath>../../</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>

modules/swagger-jaxrs2/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.1.3-SNAPSHOT</version>
8+
<version>2.1.3</version>
99
<relativePath>../../</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>

0 commit comments

Comments
 (0)