Skip to content

Commit

Permalink
prepare release candidate 2.0.0-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
frantuma committed Aug 17, 2017
1 parent 84c9cff commit 8fea1ef
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 60 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The OpenAPI Specification has undergone several revisions since initial creation

Swagger core Version | Release Date | OpenAPI Spec compatibility | Notes | Status
------------------------- | ------------ | -------------------------- | ----- | ----
2.0.0-rc0 | | 3.0 | [2.0](https://github.com/swagger-api/swagger-core/tree/2.0) | Under Development
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) | Under Development
1.5.16 (**current stable**)| 2017-07-05 | 2.0 | [tag v1.5.16](https://github.com/swagger-api/swagger-core/tree/v1.5.16) | Supported
1.3.12 | 2014-12-23 | 1.2 | [tag v1.3.12](https://github.com/swagger-api/swagger-core/tree/v1.3.12) | Deprecated
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
Expand Down Expand Up @@ -78,15 +78,15 @@ See the License for the specific language governing permissions and
limitations under the License.
```

## v2.0.0-rc0 Notable Features:
## v2.0.0-rc1 Notable Features:

- First official release candidate of OpenApi 3.0 support. swagger-core now produces OpenAPI 3.0 specs only. swagger-core 2.0 version is not backward compatible with previous 1.x versions.
- Available on Maven central, and the sources are in the 2.0 branch. PRs should be submitted against the 2.0 branch.
- Swagger JAX-RS 2 support
- Java 8
- Consistent integration mechanism

## v2.0.0-rc0 Limitations
## v2.0.0-rc1 Limitations

- Resolve resource operations also when not annotated with `@Operation` _(swagger-jaxrs2)_
- Implement `subtypes` field in `Schema` annotation, with related resolver processing _(swagger-annotations / core)_
Expand Down
4 changes: 2 additions & 2 deletions modules/swagger-annotations/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
<parent>
<groupId>io.swagger</groupId>
<artifactId>swagger-project</artifactId>
<version>2.0.0-rc0</version>
<version>2.0.0-rc1</version>
<relativePath>../..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>io.swagger</groupId>
<artifactId>swagger-annotations</artifactId>
<version>2.0.0-rc0</version>
<version>2.0.0-rc1</version>
<packaging>bundle</packaging>
<name>swagger-annotations</name>
<build>
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</groupId>
<artifactId>swagger-project</artifactId>
<version>2.0.0-rc0</version>
<version>2.0.0-rc1</version>
<relativePath>../..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
26 changes: 7 additions & 19 deletions modules/swagger-integration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
<parent>
<groupId>io.swagger</groupId>
<artifactId>swagger-project</artifactId>
<version>2.0.0-rc0</version>
<version>2.0.0-rc1</version>
<relativePath>../..</relativePath>
</parent>
<groupId>io.swagger</groupId>
<artifactId>swagger-integration</artifactId>
<version>2.0.0-rc0</version>
<version>2.0.0-rc1</version>
<packaging>bundle</packaging>
<name>swagger-integration</name>
<dependencies>
Expand Down Expand Up @@ -50,30 +50,18 @@
<artifactId>maven-bundle-plugin</artifactId>
<version>${felix-version}</version>
<extensions>true</extensions>
<executions>
<execution>
<id>set_failok</id>
<goals>
<goal>manifest</goal>
</goals>
<configuration>
<instructions>
<_failok>true</_failok>
</instructions>
</configuration>
</execution>
</executions>
<configuration>
<manifestLocation>src/main/resources/META-INF</manifestLocation>
<rebuildBundle>true</rebuildBundle>
<instructions>
<Export-Package>io.swagger.oas.integration</Export-Package>
<Export-Package>
io.swagger.oas.integration,
io.swagger.oas.integration.api
</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<swagger.version>2.0.0-rc0</swagger.version>
<swagger.version>2.0.0-rc1</swagger.version>
</properties>
</project>

This file was deleted.

17 changes: 11 additions & 6 deletions 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</groupId>
<version>2.0.0-rc0</version>
<version>2.0.0-rc1</version>
<relativePath>../../</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand All @@ -28,7 +28,12 @@
<configuration>
<instructions>
<Export-Package>
io.swagger.jaxrs2
io.swagger.jaxrs2,
io.swagger.jaxrs2.ext,
io.swagger.jaxrs2.integration,
io.swagger.jaxrs2.integration.api,
io.swagger.jaxrs2.integration.resources,
io.swagger.jaxrs2.util
</Export-Package>
<Import-Package>
javax.ws.rs*;version="[2.0,0)",
Expand Down Expand Up @@ -167,9 +172,9 @@
</dependency>
</dependencies>
<properties>
<models.version>2.0.0-rc0</models.version>
<annotations.version>2.0.0-rc0</annotations.version>
<core.version>2.0.0-rc0</core.version>
<integration.version>2.0.0-rc0</integration.version>
<models.version>2.0.0-rc1</models.version>
<annotations.version>2.0.0-rc1</annotations.version>
<core.version>2.0.0-rc1</core.version>
<integration.version>2.0.0-rc1</integration.version>
</properties>
</project>
4 changes: 2 additions & 2 deletions 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</groupId>
<artifactId>swagger-project</artifactId>
<version>2.0.0-rc0</version>
<version>2.0.0-rc1</version>
<relativePath>../..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down Expand Up @@ -89,7 +89,7 @@
</dependencies>

<properties>
<annotations.version>2.0.0-rc0</annotations.version>
<annotations.version>2.0.0-rc1</annotations.version>
<validation-api-version>1.1.0.Final</validation-api-version>
<coverage.complexity.minimum>0.07</coverage.complexity.minimum>
<coverage.line.minimum>0.0</coverage.line.minimum>
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.0-rc0</version>
<version>2.0.0-rc1</version>
<url>https://github.com/swagger-api/swagger-core</url>
<scm>
<connection>scm:git:[email protected]:swagger-api/swagger-core.git</connection>
Expand Down

0 comments on commit 8fea1ef

Please sign in to comment.