Skip to content

Commit 61c1953

Browse files
authored
Merge pull request #3611 from swagger-api/prepare-release-1.6.2
prepare release 1.6.2
2 parents 0724ec8 + df51643 commit 61c1953

File tree

11 files changed

+20
-18
lines changed

11 files changed

+20
-18
lines changed

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The goal of Swagger™ is to define a standard, language-agnostic interface to R
99

1010
Swagger Core is the Java implementation of Swagger. Current version supports *JAX-RS* and plain servlets. Integration with the Play! framework has been moved to [Swagger-Play](https://github.com/swagger-api/swagger-play).
1111

12-
Check out [Swagger-Spec](https://github.com/OAI/OpenAPI-Specification) for additional information about the Swagger project, including additional libraries with support for SpringMVC, other languages and more.
12+
Check out [Swagger-Spec](https://github.com/OAI/OpenAPI-Specification) for additional information about the Swagger project, including additional libraries with support for SpringMVC, other languages and more.
1313

1414
![Swagger Screenshot](https://raw.github.com/swagger-api/swagger-core/1.5/swagger-shot.jpg)
1515

@@ -33,7 +33,8 @@ The OpenAPI Specification has undergone several revisions since initial creation
3333

3434
Swagger core Version | Release Date | OpenAPI Spec compatibility | Notes | Status
3535
------------------------- | ------------ | -------------------------- | ----- | ----
36-
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
36+
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
37+
2.1.2 | 2020-04-01 | 3.0 | [tag v2.1.2](https://github.com/swagger-api/swagger-core/tree/v2.1.2) | Supported
3738
2.1.1 | 2020-01-02 | 3.0 | [tag v2.1.1](https://github.com/swagger-api/swagger-core/tree/v2.1.1) | Supported
3839
2.1.0 | 2019-11-16 | 3.0 | [tag v2.1.0](https://github.com/swagger-api/swagger-core/tree/v2.1.0) | Supported
3940
2.0.10 | 2019-10-11 | 3.0 | [tag v2.0.10](https://github.com/swagger-api/swagger-core/tree/v2.0.10) | Supported
@@ -44,7 +45,8 @@ Swagger core Version | Release Date | OpenAPI Spec compatibility | Notes |
4445
2.0.5 | 2018-09-19 | 3.0 | [tag v2.0.5](https://github.com/swagger-api/swagger-core/tree/v2.0.5) | Supported
4546
2.0.4 | 2018-09-05 | 3.0 | [tag v2.0.4](https://github.com/swagger-api/swagger-core/tree/v2.0.4) | Supported
4647
2.0.3 | 2018-08-09 | 3.0 | [tag v2.0.3](https://github.com/swagger-api/swagger-core/tree/v2.0.3) | Supported
47-
1.6.1 (**current stable**)| 2020-04-01 | 2.0 | [tag v1.6.1](https://github.com/swagger-api/swagger-core/tree/v1.6.1) | Supported
48+
1.6.2 (**current stable**)| 2020-07-01 | 2.0 | [tag v1.6.2](https://github.com/swagger-api/swagger-core/tree/v1.6.2) | Supported
49+
1.6.1 | 2020-04-01 | 2.0 | [tag v1.6.1](https://github.com/swagger-api/swagger-core/tree/v1.6.1) | Supported
4850
1.6.0 | 2019-11-16 | 2.0 | [tag v1.6.0](https://github.com/swagger-api/swagger-core/tree/v1.6.0) | Supported
4951
1.5.24 | 2019-10-11 | 2.0 | [tag v1.5.24](https://github.com/swagger-api/swagger-core/tree/v1.5.24) | Supported
5052
1.5.23 | 2019-08-22 | 2.0 | [tag v1.5.23](https://github.com/swagger-api/swagger-core/tree/v1.5.23) | Supported
@@ -70,7 +72,7 @@ Swagger core Version | Release Date | OpenAPI Spec compatibility | Notes |
7072
To allow independent development, scala support has been moved into a separate project. See the [swagger-scala-module](https://github.com/swagger-api/swagger-scala-module) for details. Play! framework support has moved to [swagger-play](https://github.com/swagger-api/swagger-play).
7173

7274
## Overview
73-
This is a project to build the swagger-core library, which is required for the Swagger implementation of the OpenAPI Spec.
75+
This is a project to build the swagger-core library, which is required for the Swagger implementation of the OpenAPI Spec.
7476

7577
### Change History
7678
If you're interested in the change history of swagger and the swagger-core framework, see [here](https://github.com/swagger-api/swagger-core/releases).
@@ -88,7 +90,7 @@ You need the following installed and available in your $PATH:
8890
* Apache maven 3.0.4 or greater (http://maven.apache.org/)
8991

9092

91-
### To build from source (currently 1.6.2-SNAPSHOT)
93+
### To build from source (currently 1.6.3-SNAPSHOT)
9294
```
9395
# first time building locally
9496
mvn -N

modules/swagger-annotations/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
<parent>
44
<groupId>io.swagger</groupId>
55
<artifactId>swagger-project</artifactId>
6-
<version>1.6.2-SNAPSHOT</version>
6+
<version>1.6.2</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
1010
<groupId>io.swagger</groupId>
1111
<artifactId>swagger-annotations</artifactId>
12-
<version>1.6.2-SNAPSHOT</version>
12+
<version>1.6.2</version>
1313
<packaging>bundle</packaging>
1414
<name>swagger-annotations</name>
1515
<build>

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</groupId>
55
<artifactId>swagger-project</artifactId>
6-
<version>1.6.2-SNAPSHOT</version>
6+
<version>1.6.2</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

modules/swagger-hibernate-validations/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
<parent>
55
<groupId>io.swagger</groupId>
66
<artifactId>swagger-project</artifactId>
7-
<version>1.6.2-SNAPSHOT</version>
7+
<version>1.6.2</version>
88
<relativePath>../..</relativePath>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<groupId>io.swagger</groupId>
1212
<artifactId>swagger-hibernate-validations</artifactId>
1313
<packaging>jar</packaging>
14-
<version>1.6.2-SNAPSHOT</version>
14+
<version>1.6.2</version>
1515
<name>swagger-hibernate-validations</name>
1616
<build>
1717
<sourceDirectory>src/main/java</sourceDirectory>

modules/swagger-jaxrs/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.swagger</groupId>
66
<artifactId>swagger-project</artifactId>
7-
<version>1.6.2-SNAPSHOT</version>
7+
<version>1.6.2</version>
88
<relativePath>../..</relativePath>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>

modules/swagger-jersey-jaxrs/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
<parent>
55
<groupId>io.swagger</groupId>
66
<artifactId>swagger-project</artifactId>
7-
<version>1.6.2-SNAPSHOT</version>
7+
<version>1.6.2</version>
88
<relativePath>../..</relativePath>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<groupId>io.swagger</groupId>
1212
<artifactId>swagger-jersey-jaxrs</artifactId>
1313
<packaging>jar</packaging>
14-
<version>1.6.2-SNAPSHOT</version>
14+
<version>1.6.2</version>
1515
<name>swagger-jersey-jaxrs</name>
1616
<build>
1717
<sourceDirectory>src/main/java</sourceDirectory>

modules/swagger-jersey2-jaxrs/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.swagger</groupId>
66
<artifactId>swagger-project</artifactId>
7-
<version>1.6.2-SNAPSHOT</version>
7+
<version>1.6.2</version>
88
<relativePath>../..</relativePath>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>

modules/swagger-models/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.swagger</groupId>
66
<artifactId>swagger-project</artifactId>
7-
<version>1.6.2-SNAPSHOT</version>
7+
<version>1.6.2</version>
88
<relativePath>../..</relativePath>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>

modules/swagger-mule/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</groupId>
55
<artifactId>swagger-project</artifactId>
6-
<version>1.6.2-SNAPSHOT</version>
6+
<version>1.6.2</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

modules/swagger-servlet/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.swagger</groupId>
66
<artifactId>swagger-project</artifactId>
7-
<version>1.6.2-SNAPSHOT</version>
7+
<version>1.6.2</version>
88
<relativePath>../..</relativePath>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>

0 commit comments

Comments
 (0)