Skip to content
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

prepare release 2.2.13 #4438

Merged
merged 1 commit into from
Jun 24, 2023
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
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ The OpenAPI Specification has undergone several revisions since initial creation

Swagger core Version | Release Date | OpenAPI Spec compatibility | Notes | Status
------------------------- | ------------ | -------------------------- | ----- | ----
2.2.12 (**current stable**)| 2023-06-13 | 3.x | [tag v2.2.12](https://github.com/swagger-api/swagger-core/tree/v2.2.12) | Supported
2.2.13 (**current stable**)| 2023-06-24 | 3.x | [tag v2.2.13](https://github.com/swagger-api/swagger-core/tree/v2.2.13) | Supported
2.2.12 | 2023-06-13 | 3.x | [tag v2.2.12](https://github.com/swagger-api/swagger-core/tree/v2.2.12) | Supported
2.2.11 | 2023-06-01 | 3.x | [tag v2.2.11](https://github.com/swagger-api/swagger-core/tree/v2.2.11) | Supported
2.2.10 | 2023-05-15 | 3.x | [tag v2.2.10](https://github.com/swagger-api/swagger-core/tree/v2.2.10) | Supported
2.2.9 | 2023-03-20 | 3.x | [tag v2.2.9](https://github.com/swagger-api/swagger-core/tree/v2.2.9) | Supported
Expand Down Expand Up @@ -98,7 +99,7 @@ You need the following installed and available in your $PATH:
* Jackson 2.4.5 or greater


### To build from source (currently 2.2.13-SNAPSHOT)
### To build from source (currently 2.2.14-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.2.13-SNAPSHOT</version>
<version>2.2.13</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.2.13-SNAPSHOT</version>
<version>2.2.13</version>
<relativePath>../..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion modules/swagger-eclipse-transformer-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.2.13-SNAPSHOT</version>
<version>2.2.13</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 @@ -26,7 +26,7 @@ Alternatively provide as value a classpath with the following dependencies (repl

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

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,2 +1,2 @@
version=2.2.13-SNAPSHOT
version=2.2.13
jettyVersion=9.4.49.v20220914
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.12.0"));
dependencies.add(project.getDependencies().create("io.swagger.core.v3:swagger-jaxrs2:2.2.13-SNAPSHOT"));
dependencies.add(project.getDependencies().create("io.swagger.core.v3:swagger-jaxrs2:2.2.13"));
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 @@ -81,7 +81,7 @@ public void testSwaggerResolveTask() throws IOException {
" mavenCentral()\n" +
"}\n" +
"dependencies { \n" +
" implementation 'io.swagger.core.v3:swagger-jaxrs2:2.2.13-SNAPSHOT'\n" +
" implementation 'io.swagger.core.v3:swagger-jaxrs2:2.2.13'\n" +
" implementation 'javax.ws.rs:javax.ws.rs-api:2.1'\n" +
" implementation 'javax.servlet:javax.servlet-api:3.1.0'\n" +
" testImplementation 'com.github.tomakehurst:wiremock:2.27.2'\n" +
Expand Down Expand Up @@ -154,7 +154,7 @@ public void testSwaggerResolveWithOAS31OptionTask() throws IOException {
" mavenCentral()\n" +
"}\n" +
"dependencies { \n" +
" implementation 'io.swagger.core.v3:swagger-jaxrs2:2.2.13-SNAPSHOT'\n" +
" implementation 'io.swagger.core.v3:swagger-jaxrs2:2.2.13'\n" +
" implementation 'javax.ws.rs:javax.ws.rs-api:2.1'\n" +
" implementation 'javax.servlet:javax.servlet-api:3.1.0'\n" +
" testImplementation 'com.github.tomakehurst:wiremock:2.27.2'\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.2.13-SNAPSHOT</version>
<version>2.2.13</version>
<relativePath>../..</relativePath>
</parent>
<artifactId>swagger-integration</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion modules/swagger-jaxrs2-servlet-initializer-v2/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.2.13-SNAPSHOT</version>
<version>2.2.13</version>
<relativePath>../../</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
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.2.13-SNAPSHOT</version>
<version>2.2.13</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.2.13-SNAPSHOT</version>
<version>2.2.13</version>
<relativePath>../../</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
12 changes: 6 additions & 6 deletions modules/swagger-maven-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Both `javax` and `jakarta` examples are provided below
<plugin>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-maven-plugin</artifactId>
<version>2.2.12</version>
<version>2.2.13</version>
<configuration>
<outputFileName>openapi</outputFileName>
<outputPath>${project.build.directory}/generatedtest</outputPath>
Expand All @@ -47,7 +47,7 @@ Both `javax` and `jakarta` examples are provided below
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-jaxrs2</artifactId>
<version>2.2.12</version>
<version>2.2.13</version>
</dependency>

<dependency>
Expand All @@ -73,7 +73,7 @@ Both `javax` and `jakarta` examples are provided below
<plugin>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-maven-plugin-jakarta</artifactId>
<version>2.2.12</version>
<version>2.2.13</version>
<configuration>
<outputFileName>openapi</outputFileName>
<outputPath>${project.build.directory}/generatedtest</outputPath>
Expand All @@ -98,7 +98,7 @@ Both `javax` and `jakarta` examples are provided below
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-jaxrs2-jakarta</artifactId>
<version>2.2.12</version>
<version>2.2.13</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -126,7 +126,7 @@ Both `javax` and `jakarta` examples are provided below
<plugin>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-maven-plugin</artifactId>
<version>2.2.12</version>
<version>2.2.13</version>
<configuration>
<outputFileName>openapi</outputFileName>
<outputPath>${project.build.directory}/generatedtest</outputPath>
Expand Down Expand Up @@ -155,7 +155,7 @@ Both `javax` and `jakarta` examples are provided below
<plugin>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-maven-plugin-jakarta</artifactId>
<version>2.2.12</version>
<version>2.2.13</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.2.13-SNAPSHOT</version>
<version>2.2.13</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.2.13-SNAPSHOT</version>
<version>2.2.13</version>
<relativePath>../..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
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-jakarta</artifactId>
<version>2.2.13-SNAPSHOT</version>
<version>2.2.13</version>
<relativePath>../..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
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-jakarta</artifactId>
<version>2.2.13-SNAPSHOT</version>
<version>2.2.13</version>
<relativePath>../..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
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-jakarta</artifactId>
<version>2.2.13-SNAPSHOT</version>
<version>2.2.13</version>
<relativePath>../..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
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-jakarta</artifactId>
<version>2.2.13-SNAPSHOT</version>
<version>2.2.13</version>
<relativePath>../..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
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-jakarta</artifactId>
<version>2.2.13-SNAPSHOT</version>
<version>2.2.13</version>
<relativePath>../..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
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-jakarta</artifactId>
<version>2.2.13-SNAPSHOT</version>
<version>2.2.13</version>
<relativePath>../..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
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-jakarta</artifactId>
<version>2.2.13-SNAPSHOT</version>
<version>2.2.13</version>
<relativePath>../..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
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-jakarta</artifactId>
<version>2.2.13-SNAPSHOT</version>
<version>2.2.13</version>
<relativePath>../..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion modules/swagger-project-jakarta/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<packaging>pom</packaging>
<name>swagger-project-jakarta</name>
<description>swagger-project-jakarta</description>
<version>2.2.13-SNAPSHOT</version>
<version>2.2.13</version>
<url>https://github.com/swagger-api/swagger-core</url>
<scm>
<connection>scm:git:[email protected]:swagger-api/swagger-core.git</connection>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<packaging>pom</packaging>
<name>swagger-project</name>
<description>swagger-project</description>
<version>2.2.13-SNAPSHOT</version>
<version>2.2.13</version>
<url>https://github.com/swagger-api/swagger-core</url>
<scm>
<connection>scm:git:[email protected]:swagger-api/swagger-core.git</connection>
Expand Down
Loading