Skip to content

Commit c4bc5f2

Browse files
prepare release 2.2.53 (#5259)
Co-authored-by: ewaostrowska <214632419+ewaostrowska@users.noreply.github.com>
1 parent 7d14a26 commit c4bc5f2

26 files changed

Lines changed: 36 additions & 35 deletions

File tree

README.md

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

2424
Swagger core Version | Release Date | OpenAPI Spec compatibility | Notes | Status
2525
------------------------- | ------------ | -------------------------- | ----- | ----
26-
2.2.52 (**current stable**)| 2026-06-22 | 3.x | [tag v2.2.52](https://github.com/swagger-api/swagger-core/tree/v2.2.52) | Supported
26+
2.2.53 (**current stable**)| 2026-08-03 | 3.x | [tag v2.2.53](https://github.com/swagger-api/swagger-core/tree/v2.2.53) | Supported
27+
2.2.52 | 2026-06-22 | 3.x | [tag v2.2.52](https://github.com/swagger-api/swagger-core/tree/v2.2.52) | Supported
2728
2.2.51 | 2026-06-12 | 3.x | [tag v2.2.51](https://github.com/swagger-api/swagger-core/tree/v2.2.51) | Supported
2829
2.2.50 | 2026-05-12 | 3.x | [tag v2.2.50](https://github.com/swagger-api/swagger-core/tree/v2.2.50) | Supported
2930
2.2.49 | 2026-04-28 | 3.x | [tag v2.2.49](https://github.com/swagger-api/swagger-core/tree/v2.2.49) | Supported
@@ -145,7 +146,7 @@ You need the following installed and available in your $PATH:
145146
* Jackson 2.4.5 or greater
146147

147148

148-
### To build from source (currently 2.2.53-SNAPSHOT)
149+
### To build from source (currently 2.2.54-SNAPSHOT)
149150
```
150151
# first time building locally
151152
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.2.53-SNAPSHOT</version>
6+
<version>2.2.53</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

modules/swagger-bom-integration-test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.swagger.core.v3</groupId>
77
<artifactId>swagger-project</artifactId>
8-
<version>2.2.53-SNAPSHOT</version>
8+
<version>2.2.53</version>
99
<relativePath>../..</relativePath>
1010
</parent>
1111

modules/swagger-bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>io.swagger.core.v3</groupId>
66
<artifactId>swagger-bom</artifactId>
7-
<version>2.2.53-SNAPSHOT</version>
7+
<version>2.2.53</version>
88
<packaging>pom</packaging>
99

1010
<name>swagger-bom</name>

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.2.53-SNAPSHOT</version>
6+
<version>2.2.53</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

modules/swagger-eclipse-transformer-maven-plugin/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.2.53-SNAPSHOT</version>
7+
<version>2.2.53</version>
88
<relativePath>../..</relativePath>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>

modules/swagger-gradle-plugin/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Alternatively provide as value a classpath with the following dependencies (repl
2626

2727
```
2828
plugins {
29-
id "io.swagger.core.v3.swagger-gradle-plugin" version "2.2.52"
29+
id "io.swagger.core.v3.swagger-gradle-plugin" version "2.2.53"
3030
}
3131
```
3232
### Gradle 1.x and 2.0
@@ -43,7 +43,7 @@ buildscript {
4343
}
4444
}
4545
dependencies {
46-
classpath "io.swagger.core.v3:swagger-gradle-plugin:2.2.52"
46+
classpath "io.swagger.core.v3:swagger-gradle-plugin:2.2.53"
4747
}
4848
}
4949
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version=2.2.53-SNAPSHOT
1+
version=2.2.53
22
jettyVersion=9.4.53.v20231009

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.2.53-SNAPSHOT</version>
9+
<version>2.2.53</version>
1010
<relativePath>../..</relativePath>
1111
</parent>
1212
<artifactId>swagger-integration</artifactId>

modules/swagger-java17-support/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.swagger.core.v3</groupId>
77
<artifactId>swagger-project</artifactId>
8-
<version>2.2.53-SNAPSHOT</version>
8+
<version>2.2.53</version>
99
<relativePath>../../pom.xml</relativePath>
1010
</parent>
1111
<artifactId>swagger-java17-support</artifactId>

0 commit comments

Comments
 (0)