|
2 | 2 |
|
3 | 3 | [](https://jenkins.swagger.io/view/OSS%20-%20Java/job/oss-swagger-codegen-3)
|
4 | 4 |
|
5 |
| -- 3.0.32-SNAPSHOT: [](https://travis-ci.org/swagger-api/swagger-codegen) |
| 5 | +- 3.0.33-SNAPSHOT: [](https://travis-ci.org/swagger-api/swagger-codegen) |
6 | 6 | [](https://jenkins.swagger.io/view/OSS%20-%20Java/job/oss-swagger-codegen-3)
|
7 | 7 | - Master (2.4.26SNAPSHOT): [](https://travis-ci.org/swagger-api/swagger-codegen)
|
8 | 8 | [](https://jenkins.swagger.io/view/OSS%20-%20Java/job/oss-swagger-codegen-master)
|
@@ -37,7 +37,7 @@ dependency example:
|
37 | 37 | <dependency>
|
38 | 38 | <groupId>io.swagger.codegen.v3</groupId>
|
39 | 39 | <artifactId>swagger-codegen-maven-plugin</artifactId>
|
40 |
| - <version>3.0.31</version> |
| 40 | + <version>3.0.32</version> |
41 | 41 | </dependency>
|
42 | 42 | ```
|
43 | 43 |
|
@@ -111,9 +111,10 @@ Check out [OpenAPI Specification](https://github.com/OAI/OpenAPI-Specification)
|
111 | 111 | The OpenAPI Specification has undergone 3 revisions since initial creation in 2010.. The Swagger Codegen project has the following compatibilities with the OpenAPI Specification:
|
112 | 112 |
|
113 | 113 | Swagger Codegen Version | Release Date | OpenAPI Spec compatibility | Notes
|
114 |
| --------------------------- | ------------ | -------------------------- | ----- |
115 |
| -3.0.32-SNAPSHOT (current 3.0.0, upcoming minor release) [SNAPSHOT](https://oss.sonatype.org/content/repositories/snapshots/io/swagger/codegen/v3/swagger-codegen-cli/3.0.32-SNAPSHOT/)| TBD | 1.0, 1.1, 1.2, 2.0, 3.0 | Minor release |
116 |
| -[3.0.31](https://github.com/swagger-api/swagger-codegen/releases/tag/v3.0.31) (**current stable**) | 2021-12-28 | 1.0, 1.1, 1.2, 2.0, 3.0 | [tag v3.0.31](https://github.com/swagger-api/swagger-codegen/tree/v3.0.31) |
| 114 | +-------------------------- |--------------| -------------------------- | ----- |
| 115 | +3.0.33-SNAPSHOT (current 3.0.0, upcoming minor release) [SNAPSHOT](https://oss.sonatype.org/content/repositories/snapshots/io/swagger/codegen/v3/swagger-codegen-cli/3.0.33-SNAPSHOT/)| TBD | 1.0, 1.1, 1.2, 2.0, 3.0 | Minor release |
| 116 | +[3.0.32](https://github.com/swagger-api/swagger-codegen/releases/tag/v3.0.32) (**current stable**) | 2022-01-11 | 1.0, 1.1, 1.2, 2.0, 3.0 | [tag v3.0.32](https://github.com/swagger-api/swagger-codegen/tree/v3.0.32) |
| 117 | +[3.0.31](https://github.com/swagger-api/swagger-codegen/releases/tag/v3.0.31) | 2021-12-28 | 1.0, 1.1, 1.2, 2.0, 3.0 | [tag v3.0.31](https://github.com/swagger-api/swagger-codegen/tree/v3.0.31) |
117 | 118 | [3.0.30](https://github.com/swagger-api/swagger-codegen/releases/tag/v3.0.30) | 2021-11-18 | 1.0, 1.1, 1.2, 2.0, 3.0 | [tag v3.0.30](https://github.com/swagger-api/swagger-codegen/tree/v3.0.30)
|
118 | 119 | [3.0.29](https://github.com/swagger-api/swagger-codegen/releases/tag/v3.0.29) | 2021-10-05 | 1.0, 1.1, 1.2, 2.0, 3.0 | [tag v3.0.29](https://github.com/swagger-api/swagger-codegen/tree/v3.0.29)
|
119 | 120 | [3.0.28](https://github.com/swagger-api/swagger-codegen/releases/tag/v3.0.28) | 2021-09-30 | 1.0, 1.1, 1.2, 2.0, 3.0 | [tag v3.0.28](https://github.com/swagger-api/swagger-codegen/tree/v3.0.28)
|
@@ -185,12 +186,12 @@ Swagger Codegen Version | Release Date | OpenAPI Spec compatibility | Notes
|
185 | 186 | If you're looking for the latest stable version, you can grab it directly from Maven.org (Java 8 runtime at a minimum):
|
186 | 187 |
|
187 | 188 | ```sh
|
188 |
| -wget https://repo1.maven.org/maven2/io/swagger/codegen/v3/swagger-codegen-cli/3.0.31/swagger-codegen-cli-3.0.31.jar -O swagger-codegen-cli.jar |
| 189 | +wget https://repo1.maven.org/maven2/io/swagger/codegen/v3/swagger-codegen-cli/3.0.32/swagger-codegen-cli-3.0.32.jar -O swagger-codegen-cli.jar |
189 | 190 |
|
190 | 191 | java -jar swagger-codegen-cli.jar --help
|
191 | 192 | ```
|
192 | 193 |
|
193 |
| -For Windows users, you will need to install [wget](http://gnuwin32.sourceforge.net/packages/wget.htm) or you can use Invoke-WebRequest in PowerShell (3.0+), e.g. `Invoke-WebRequest -OutFile swagger-codegen-cli.jar https://repo1.maven.org/maven2/io/swagger/codegen/v3/swagger-codegen-cli/3.0.31/swagger-codegen-cli-3.0.31.jar` |
| 194 | +For Windows users, you will need to install [wget](http://gnuwin32.sourceforge.net/packages/wget.htm) or you can use Invoke-WebRequest in PowerShell (3.0+), e.g. `Invoke-WebRequest -OutFile swagger-codegen-cli.jar https://repo1.maven.org/maven2/io/swagger/codegen/v3/swagger-codegen-cli/3.0.32/swagger-codegen-cli-3.0.32.jar` |
194 | 195 |
|
195 | 196 | On a mac, it's even easier with `brew`:
|
196 | 197 | ```sh
|
@@ -274,6 +275,7 @@ cd /vagrant
|
274 | 275 | #### Public Pre-built Docker images
|
275 | 276 |
|
276 | 277 | - https://hub.docker.com/r/swaggerapi/swagger-generator-v3/ (official web service)
|
| 278 | + - https://hub.docker.com/r/swaggerapi/swagger-generator-v3-root/ (official web service with "standard" user) |
277 | 279 | - https://hub.docker.com/r/swaggerapi/swagger-generator-v3-minimal/ (official minimal web service)
|
278 | 280 | - https://hub.docker.com/r/swaggerapi/swagger-codegen-cli-v3/ (official CLI)
|
279 | 281 |
|
@@ -374,7 +376,7 @@ java -jar modules/swagger-codegen-cli/target/swagger-codegen-cli.jar generate \
|
374 | 376 | ```
|
375 | 377 | (if you're on Windows, replace the last command with `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`)
|
376 | 378 |
|
377 |
| -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.31/swagger-codegen-cli-3.0.31.jar) |
| 379 | +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.32/swagger-codegen-cli-3.0.32.jar) |
378 | 380 |
|
379 | 381 | To get a list of **general** options available, please run `java -jar modules/swagger-codegen-cli/target/swagger-codegen-cli.jar generate --help`
|
380 | 382 |
|
|
0 commit comments