Skip to content
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
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,17 +82,17 @@ Check out the [OpenAPI Specification](https://github.com/OAI/OpenAPI-Specificati

The OpenAPI Specification has undergone 3 revisions since initial creation in 2010. The **current stable** versions of Swagger Codegen project have the following compatibilities with the OpenAPI Specification:

Swagger Codegen Version | Release Date | Swagger / OpenAPI Spec compatibility | Notes
-------------------------- |--------------| -------------------------- | -----
[3.0.76](https://github.com/swagger-api/swagger-codegen/releases/tag/v3.0.76) (**current stable**) | 2026-01-20 | 1.0, 1.1, 1.2, 2.0, 3.0 | [tag v3.0.76](https://github.com/swagger-api/swagger-codegen/tree/v3.0.76)
[2.4.47](https://github.com/swagger-api/swagger-codegen/releases/tag/v2.4.47) (**current stable**) | 2025-09-16 | 1.0, 1.1, 1.2, 2.0 | [tag v2.4.47](https://github.com/swagger-api/swagger-codegen/tree/v2.4.47)
| Swagger Codegen Version | Release Date | Swagger / OpenAPI Spec compatibility | Notes |
|----------------------------------------------------------------------------------------------------|--------------|--------------------------------------|----------------------------------------------------------------------------|
| [3.0.77](https://github.com/swagger-api/swagger-codegen/releases/tag/v3.0.77) (**current stable**) | 2026-02-03 | 1.0, 1.1, 1.2, 2.0, 3.0 | [tag v3.0.77](https://github.com/swagger-api/swagger-codegen/tree/v3.0.77) |
| [2.4.47](https://github.com/swagger-api/swagger-codegen/releases/tag/v2.4.47) (**current stable**) | 2025-09-16 | 1.0, 1.1, 1.2, 2.0 | [tag v2.4.47](https://github.com/swagger-api/swagger-codegen/tree/v2.4.47) |

💁 Here's also an overview of what's coming around the corner:

Swagger Codegen Version | Release Date | Swagger / OpenAPI Spec compatibility | Notes
-------------------------- |--------------| -------------------------- | -----
3.0.77-SNAPSHOT (current 3.0.0, upcoming minor release) [SNAPSHOT](https://central.sonatype.com/service/rest/repository/browse/maven-snapshots/io/swagger/codegen/v3/swagger-codegen-cli/3.0.77-SNAPSHOT/)| TBD | 1.0, 1.1, 1.2, 2.0, 3.0 | Minor release
2.4.48-SNAPSHOT (current master, upcoming minor release) [SNAPSHOT](https://central.sonatype.com/service/rest/repository/browse/maven-snapshots/io/swagger/swagger-codegen-cli/2.4.48-SNAPSHOT/)| TBD | 1.0, 1.1, 1.2, 2.0 | Minor release
| Swagger Codegen Version | Release Date | Swagger / OpenAPI Spec compatibility | Notes |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------|--------------------------------------|---------------|
| 3.0.78-SNAPSHOT (current 3.0.0, upcoming minor release) [SNAPSHOT](https://central.sonatype.com/service/rest/repository/browse/maven-snapshots/io/swagger/codegen/v3/swagger-codegen-cli/3.0.78-SNAPSHOT/) | TBD | 1.0, 1.1, 1.2, 2.0, 3.0 | Minor release |
| 2.4.48-SNAPSHOT (current master, upcoming minor release) [SNAPSHOT](https://central.sonatype.com/service/rest/repository/browse/maven-snapshots/io/swagger/swagger-codegen-cli/2.4.48-SNAPSHOT/) | TBD | 1.0, 1.1, 1.2, 2.0 | Minor release |

For detailed breakdown of all versions, please see the [full compatibility listing](./docs/compatibility.md).

Expand Down Expand Up @@ -126,7 +126,7 @@ java -jar modules/swagger-codegen-cli/target/swagger-codegen-cli.jar generate \
java -jar modules\swagger-codegen-cli\target\swagger-codegen-cli.jar generate -i http://petstore.swagger.io/v2/swagger.json -l php -o c:\temp\php_api_client
```

You can also download the JAR (latest release) directly from [maven.org](https://repo1.maven.org/maven2/io/swagger/codegen/v3/swagger-codegen-cli/3.0.76/swagger-codegen-cli-3.0.76.jar).
You can also download the JAR (latest release) directly from [maven.org](https://repo1.maven.org/maven2/io/swagger/codegen/v3/swagger-codegen-cli/3.0.77/swagger-codegen-cli-3.0.77.jar).

To get a list of **general** options available, please run:

Expand Down
Loading