Skip to content

Commit 41eeaf3

Browse files
authored
Merge pull request #2762 from swagger-api/prepare-release-2.0.1
prepare release 2.0.1
2 parents fdcd8d9 + 7f10908 commit 41eeaf3

File tree

8 files changed

+39
-18
lines changed

8 files changed

+39
-18
lines changed

README.md

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,15 @@ The OpenAPI Specification has undergone several revisions since initial creation
2727

2828
Swagger core Version | Release Date | OpenAPI Spec compatibility | Notes | Status
2929
------------------------- | ------------ | -------------------------- | ----- | ----
30-
2.0.0 | 2018-03-23 | 3.0 | [tag v2.0.0](https://github.com/swagger-api/swagger-core/tree/v2.0.0) | Supported
30+
1.5.19 (**current stable**)| 2018-04-16 | 2.0 | [tag v1.5.19](https://github.com/swagger-api/swagger-core/tree/v1.5.19) | Supported
31+
2.0.1 (**current stable**)| 2018-04-16 | 3.0 | [tag v2.0.1](https://github.com/swagger-api/swagger-core/tree/v2.0.1) | Supported
32+
2.0.0 | 2018-03-20 | 3.0 | [tag v2.0.0](https://github.com/swagger-api/swagger-core/tree/v2.0.0) | Supported
3133
2.0.0-rc4 | 2018-01-22 | 3.0 | [tag v2.0.0-rc4](https://github.com/swagger-api/swagger-core/tree/v2.0.0-rc4) | Supported
3234
2.0.0-rc3 | 2017-11-21 | 3.0 | [tag v2.0.0-rc3](https://github.com/swagger-api/swagger-core/tree/v2.0.0-rc3) | Supported
3335
2.0.0-rc2 | 2017-09-29 | 3.0 | [tag v2.0.0-rc2](https://github.com/swagger-api/swagger-core/tree/v2.0.0-rc2) | Supported
3436
2.0.0-rc1 | 2017-08-17 | 3.0 | [tag v2.0.0-rc1](https://github.com/swagger-api/swagger-core/tree/v2.0.0-rc1) | Supported
35-
1.5.17 (**current stable**)| 2017-11-21 | 2.0 | [tag v1.5.17](https://github.com/swagger-api/swagger-core/tree/v1.5.17) | Supported
37+
1.5.18 | 2018-01-22 | 2.0 | [tag v1.5.18](https://github.com/swagger-api/swagger-core/tree/v1.5.18) | Supported
38+
1.5.17 | 2017-11-21 | 2.0 | [tag v1.5.17](https://github.com/swagger-api/swagger-core/tree/v1.5.17) | Supported
3639
1.5.16 | 2017-07-15 | 2.0 | [tag v1.5.16](https://github.com/swagger-api/swagger-core/tree/v1.5.16) | Supported
3740
1.3.12 | 2014-12-23 | 1.2 | [tag v1.3.12](https://github.com/swagger-api/swagger-core/tree/v1.3.12) | Supported
3841
1.2.4 | 2013-06-19 | 1.1 | [tag swagger-project_2.10.0-1.2.4](https://github.com/swagger-api/swagger-core/tree/swagger-project_2.10.0-1.2.4) | Deprecated
@@ -53,7 +56,7 @@ You need the following installed and available in your $PATH:
5356
* Jackson 2.4.5 or greater
5457

5558

56-
### To build from source (currently 2.0.1-SNAPSHOT)
59+
### To build from source (currently 2.0.2-SNAPSHOT)
5760
```
5861
# first time building locally
5962
mvn -N
@@ -90,6 +93,24 @@ See the License for the specific language governing permissions and
9093
limitations under the License.
9194
```
9295

96+
## v2.0.1
97+
98+
### Notable Features:
99+
* JDK 9/10 support in build (#2735)
100+
101+
### Bug fixes:
102+
103+
* Supports `OpenAPIExtension` `decorateOperation` (#2748)
104+
* Fix path building for resources without leading slashes (#2751)
105+
* Fix stackOverflowError for circuclar reference in jackson ModelResolver (#2740)
106+
* Fix CVE-2018-7489 - jackson version 2.9.5 (#2755)
107+
* Fix random build error (#2752)
108+
* Fix NPE in Reader with null config (#2736)
109+
* Improve support for #2635
110+
* Improve support for #2635
111+
* Correctly resolve array schema annotations with ref schema items (#2763)
112+
* Fix security scheme name/key resolving (#2767)
113+
93114
## v2.0.0
94115

95116
### Notable Features:

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.core.v3</groupId>
55
<artifactId>swagger-project</artifactId>
6-
<version>2.0.1-SNAPSHOT</version>
6+
<version>2.0.1</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
1010
<groupId>io.swagger.core.v3</groupId>
1111
<artifactId>swagger-annotations</artifactId>
12-
<version>2.0.1-SNAPSHOT</version>
12+
<version>2.0.1</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.core.v3</groupId>
55
<artifactId>swagger-project</artifactId>
6-
<version>2.0.1-SNAPSHOT</version>
6+
<version>2.0.1</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

modules/swagger-integration/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
<parent>
77
<groupId>io.swagger.core.v3</groupId>
88
<artifactId>swagger-project</artifactId>
9-
<version>2.0.1-SNAPSHOT</version>
9+
<version>2.0.1</version>
1010
<relativePath>../..</relativePath>
1111
</parent>
1212
<groupId>io.swagger.core.v3</groupId>
1313
<artifactId>swagger-integration</artifactId>
14-
<version>2.0.1-SNAPSHOT</version>
14+
<version>2.0.1</version>
1515
<packaging>bundle</packaging>
1616
<name>swagger-integration</name>
1717
<dependencies>
@@ -53,6 +53,6 @@
5353
</plugins>
5454
</build>
5555
<properties>
56-
<swagger.version>2.0.1-SNAPSHOT</swagger.version>
56+
<swagger.version>2.0.1</swagger.version>
5757
</properties>
5858
</project>

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

Lines changed: 2 additions & 2 deletions
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.1-SNAPSHOT</version>
8+
<version>2.0.1</version>
99
<relativePath>../../</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>
@@ -184,6 +184,6 @@
184184
</dependency>
185185
</dependencies>
186186
<properties>
187-
<swagger.version>2.0.1-SNAPSHOT</swagger.version>
187+
<swagger.version>2.0.1</swagger.version>
188188
</properties>
189189
</project>

modules/swagger-jaxrs2/pom.xml

Lines changed: 5 additions & 5 deletions
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.1-SNAPSHOT</version>
8+
<version>2.0.1</version>
99
<relativePath>../../</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>
@@ -292,9 +292,9 @@
292292
</dependency>
293293
</dependencies>
294294
<properties>
295-
<models.version>2.0.1-SNAPSHOT</models.version>
296-
<annotations.version>2.0.1-SNAPSHOT</annotations.version>
297-
<core.version>2.0.1-SNAPSHOT</core.version>
298-
<integration.version>2.0.1-SNAPSHOT</integration.version>
295+
<models.version>2.0.1</models.version>
296+
<annotations.version>2.0.1</annotations.version>
297+
<core.version>2.0.1</core.version>
298+
<integration.version>2.0.1</integration.version>
299299
</properties>
300300
</project>

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.core.v3</groupId>
66
<artifactId>swagger-project</artifactId>
7-
<version>2.0.1-SNAPSHOT</version>
7+
<version>2.0.1</version>
88
<relativePath>../..</relativePath>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<artifactId>swagger-project</artifactId>
1111
<packaging>pom</packaging>
1212
<name>swagger-project</name>
13-
<version>2.0.1-SNAPSHOT</version>
13+
<version>2.0.1</version>
1414
<url>https://github.com/swagger-api/swagger-core</url>
1515
<scm>
1616
<connection>scm:git:[email protected]:swagger-api/swagger-core.git</connection>

0 commit comments

Comments
 (0)