Skip to content

Commit 734b2b7

Browse files
committed
update doc
1 parent 24b48a0 commit 734b2b7

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
<div align="center">
1717

18-
[Master](https://github.com/OpenAPITools/openapi-generator/tree/master) (`7.12.0`):
18+
[Master](https://github.com/OpenAPITools/openapi-generator/tree/master) (`7.13.0`):
1919
[![Build Status](https://api.travis-ci.com/OpenAPITools/openapi-generator.svg?branch=master&status=passed)](https://app.travis-ci.com/github/OpenAPITools/openapi-generator/builds)
2020
[![Integration Test2](https://circleci.com/gh/OpenAPITools/openapi-generator.svg?style=shield)](https://circleci.com/gh/OpenAPITools/openapi-generator)
2121
[![Windows Test](https://ci.appveyor.com/api/projects/status/github/openapitools/openapi-generator?branch=master&svg=true&passingText=Windows%20Test%20-%20OK&failingText=Windows%20Test%20-%20Fails)](https://ci.appveyor.com/project/WilliamCheng/openapi-generator)
@@ -131,8 +131,8 @@ The OpenAPI Specification has undergone 3 revisions since initial creation in 20
131131

132132
| OpenAPI Generator Version | Release Date | Notes |
133133
| --------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------ | ------------------------------------------------- |
134-
| 7.12.0 (upcoming minor release) [SNAPSHOT](https://oss.sonatype.org/content/repositories/snapshots/org/openapitools/openapi-generator-cli/7.12.0-SNAPSHOT/) | 17.02.2024 | Minor release with breaking changes (with fallback) |
135-
| [7.11.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v7.11.0) (latest stable release) | 20.01.2024 | Minor release with breaking changes (with fallback) |
134+
| 7.13.0 (upcoming minor release) [SNAPSHOT](https://oss.sonatype.org/content/repositories/snapshots/org/openapitools/openapi-generator-cli/7.13.0-SNAPSHOT/) | 02.04.2025 | Minor release with breaking changes (with fallback) |
135+
| [7.12.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v7.12.0) (latest stable release) | 28.02.2025 | Minor release with breaking changes (with fallback) |
136136
| [6.6.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v6.6.0) | 11.05.2023 | Minor release with breaking changes (with fallback) |
137137
| [5.4.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v5.4.0) | 31.01.2022 | Minor release with breaking changes (with fallback) |
138138
| [4.3.1](https://github.com/OpenAPITools/openapi-generator/releases/tag/v4.3.1) | 06.05.2020 | Patch release (enhancements, bug fixes, etc) |
@@ -195,16 +195,16 @@ See the different versions of the [openapi-generator-cli](https://search.maven.o
195195
<!-- RELEASE_VERSION -->
196196
If you're looking for the latest stable version, you can grab it directly from Maven.org (Java 11 runtime at a minimum):
197197

198-
JAR location: `https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.11.0/openapi-generator-cli-7.11.0.jar`
198+
JAR location: `https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.12.0/openapi-generator-cli-7.12.0.jar`
199199

200200
For **Mac/Linux** users:
201201
```sh
202-
wget https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.11.0/openapi-generator-cli-7.11.0.jar -O openapi-generator-cli.jar
202+
wget https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.12.0/openapi-generator-cli-7.12.0.jar -O openapi-generator-cli.jar
203203
```
204204

205205
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.
206206
```
207-
Invoke-WebRequest -OutFile openapi-generator-cli.jar https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.11.0/openapi-generator-cli-7.11.0.jar
207+
Invoke-WebRequest -OutFile openapi-generator-cli.jar https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.12.0/openapi-generator-cli-7.12.0.jar
208208
```
209209

210210
After downloading the JAR, run `java -jar openapi-generator-cli.jar help` to show the usage.
@@ -439,7 +439,7 @@ openapi-generator-cli version
439439
To use a specific version of "openapi-generator-cli"
440440

441441
```sh
442-
openapi-generator-cli version-manager set 7.11.0
442+
openapi-generator-cli version-manager set 7.12.0
443443
```
444444

445445
Or install it as dev-dependency:
@@ -463,7 +463,7 @@ pip install openapi-generator-cli
463463

464464
To install a specific version
465465
```
466-
pip install openapi-generator-cli==7.11.0
466+
pip install openapi-generator-cli==7.12.0
467467
```
468468

469469
You can also install with [jdk4py](https://github.com/activeviam/jdk4py) instead of java binary. (python>=3.10 is required)
@@ -489,7 +489,7 @@ java -jar modules/openapi-generator-cli/target/openapi-generator-cli.jar generat
489489
(if you're on Windows, replace the last command with `java -jar modules\openapi-generator-cli\target\openapi-generator-cli.jar generate -i https://raw.githubusercontent.com/openapitools/openapi-generator/master/modules/openapi-generator/src/test/resources/3_0/petstore.yaml -g php -o c:\temp\php_api_client`)
490490

491491
<!-- RELEASE_VERSION -->
492-
You can also download the JAR (latest release) directly from [maven.org](https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.11.0/openapi-generator-cli-7.11.0.jar)
492+
You can also download the JAR (latest release) directly from [maven.org](https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.12.0/openapi-generator-cli-7.12.0.jar)
493493
<!-- /RELEASE_VERSION -->
494494

495495
To get a list of **general** options available, please run `java -jar modules/openapi-generator-cli/target/openapi-generator-cli.jar help generate`

docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ npm install @openapitools/openapi-generator-cli -g
2222
To install a specific version of the tool, pass the version during installation:
2323
<!-- RELEASE_VERSION -->
2424
```bash
25-
openapi-generator-cli version-manager set 7.9.0
25+
openapi-generator-cli version-manager set 7.12.0
2626
```
2727
<!-- /RELEASE_VERSION -->
2828
To install the tool as a dev dependency in your current project:

docs/plugins.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Add to your `build->plugins` section (default phase is `generate-sources` phase)
1616
<plugin>
1717
<groupId>org.openapitools</groupId>
1818
<artifactId>openapi-generator-maven-plugin</artifactId>
19-
<version>7.9.0</version>
19+
<version>7.12.0</version>
2020
<executions>
2121
<execution>
2222
<goals>

modules/openapi-generator-gradle-plugin/README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ task validateGoodSpec(type: org.openapitools.generator.gradle.plugin.tasks.Valid
9797
[source,group]
9898
----
9999
plugins {
100-
id "org.openapi.generator" version "7.10.0"
100+
id "org.openapi.generator" version "7.12.0"
101101
}
102102
----
103103

modules/openapi-generator-gradle-plugin/samples/local-spec/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ gradle generateGoWithInvalidSpec # expected outcome: BUILD FAILED
1919
The samples can be tested against other versions of the plugin using the `openApiGeneratorVersion` property. For example:
2020

2121
```bash
22-
gradle -PopenApiGeneratorVersion=7.10.0 openApiValidate
22+
gradle -PopenApiGeneratorVersion=7.12.0 openApiValidate
2323
```

modules/openapi-generator-maven-plugin/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Add to your `build->plugins` section (default phase is `generate-sources` phase)
1212
<groupId>org.openapitools</groupId>
1313
<artifactId>openapi-generator-maven-plugin</artifactId>
1414
<!-- RELEASE_VERSION -->
15-
<version>7.10.0</version>
15+
<version>7.12.0</version>
1616
<!-- /RELEASE_VERSION -->
1717
<executions>
1818
<execution>

website/src/pages/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ const callouts = [
147147
|npm install @openapitools/openapi-generator-cli -g
148148
|
149149
|# use a specific version of "openapi-generator-cli"
150-
|openapi-generator-cli version-manager set 7.9.0
150+
|openapi-generator-cli version-manager set 7.12.0
151151
|
152152
|# Or install it as dev-dependency in your node.js projects
153153
|npm install @openapitools/openapi-generator-cli -D

0 commit comments

Comments
 (0)