Skip to content

Commit b093576

Browse files
committed
update docs
1 parent a357ff5 commit b093576

6 files changed

Lines changed: 21 additions & 21 deletions

File tree

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.24.0`):
18+
[Master](https://github.com/OpenAPITools/openapi-generator/tree/master) (`7.25.0`):
1919
[![Integration Test2](https://circleci.com/gh/OpenAPITools/openapi-generator.svg?style=shield)](https://circleci.com/gh/OpenAPITools/openapi-generator)
2020
[![Bitrise](https://img.shields.io/bitrise/4a2b10a819d12b67/master?label=bitrise%3A%20Swift+4,5&token=859FMDR8QHwabCzwvZK6vQ)](https://app.bitrise.io/app/4a2b10a819d12b67)
2121

@@ -155,8 +155,8 @@ The OpenAPI Specification has undergone 3 revisions since initial creation in 20
155155

156156
| OpenAPI Generator Version | Release Date | Notes |
157157
| --------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------ | ------------------------------------------------- |
158-
| 7.24.0 (upcoming minor release) [SNAPSHOT](https://github.com/OpenAPITools/openapi-generator/wiki/FAQ#how-to-test-with-the-latest-master-of-openapi-generator) | 08.07.2026 | Minor release with breaking changes (with fallback) |
159-
| [7.23.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v7.23.0) (latest stable release) | 28.04.2026 | Minor release with breaking changes (with fallback) |
158+
| 7.25.0 (upcoming minor release) [SNAPSHOT](https://github.com/OpenAPITools/openapi-generator/wiki/FAQ#how-to-test-with-the-latest-master-of-openapi-generator) | 20.08.2026 | Minor release with breaking changes (with fallback) |
159+
| [7.24.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v7.24.0) (latest stable release) | 20.07.2026 | Minor release with breaking changes (with fallback) |
160160
| [6.6.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v6.6.0) | 11.05.2023 | Minor release with breaking changes (with fallback) |
161161
| [5.4.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v5.4.0) | 31.01.2022 | Minor release with breaking changes (with fallback) |
162162
| [4.3.1](https://github.com/OpenAPITools/openapi-generator/releases/tag/v4.3.1) | 06.05.2020 | Patch release (enhancements, bug fixes, etc) |
@@ -219,16 +219,16 @@ See the different versions of the [openapi-generator-cli](https://search.maven.o
219219
<!-- RELEASE_VERSION -->
220220
If you're looking for the latest stable version, you can grab it directly from Maven.org (Java 11 runtime at a minimum):
221221

222-
JAR location: `https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.23.0/openapi-generator-cli-7.23.0.jar`
222+
JAR location: `https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.24.0/openapi-generator-cli-7.24.0.jar`
223223

224224
For **Mac/Linux** users:
225225
```sh
226-
wget https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.23.0/openapi-generator-cli-7.23.0.jar -O openapi-generator-cli.jar
226+
wget https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.24.0/openapi-generator-cli-7.24.0.jar -O openapi-generator-cli.jar
227227
```
228228

229229
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.
230230
```
231-
Invoke-WebRequest -OutFile openapi-generator-cli.jar https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.23.0/openapi-generator-cli-7.23.0.jar
231+
Invoke-WebRequest -OutFile openapi-generator-cli.jar https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.24.0/openapi-generator-cli-7.24.0.jar
232232
```
233233

234234
After downloading the JAR, run `java -jar openapi-generator-cli.jar help` to show the usage.
@@ -463,7 +463,7 @@ openapi-generator-cli version
463463
To use a specific version of "openapi-generator-cli"
464464

465465
```sh
466-
openapi-generator-cli version-manager set 7.23.0
466+
openapi-generator-cli version-manager set 7.24.0
467467
```
468468

469469
Or install it as dev-dependency:
@@ -487,7 +487,7 @@ pip install openapi-generator-cli
487487

488488
To install a specific version
489489
```
490-
pip install openapi-generator-cli==7.23.0
490+
pip install openapi-generator-cli==7.24.0
491491
```
492492

493493
You can also install with [jdk4py](https://github.com/activeviam/jdk4py) instead of java binary. (python>=3.10 is required)
@@ -513,7 +513,7 @@ java -jar modules/openapi-generator-cli/target/openapi-generator-cli.jar generat
513513
(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`)
514514

515515
<!-- RELEASE_VERSION -->
516-
You can also download the JAR (latest release) directly from [maven.org](https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.23.0/openapi-generator-cli-7.23.0.jar)
516+
You can also download the JAR (latest release) directly from [maven.org](https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.24.0/openapi-generator-cli-7.24.0.jar)
517517
<!-- /RELEASE_VERSION -->
518518

519519
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: 4 additions & 4 deletions
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.23.0
25+
openapi-generator-cli version-manager set 7.24.0
2626
```
2727
<!-- /RELEASE_VERSION -->
2828
To install the tool as a dev dependency in your current project:
@@ -119,18 +119,18 @@ docker run --rm \
119119
<!-- RELEASE_VERSION -->
120120
If you're looking for the latest stable version, you can grab it directly from Maven.org (Java 11 runtime at a minimum):
121121

122-
JAR location: `https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.23.0/openapi-generator-cli-7.23.0.jar`
122+
JAR location: `https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.24.0/openapi-generator-cli-7.24.0.jar`
123123

124124
For **Mac/Linux** users:
125125

126126
```bash
127-
wget https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.23.0/openapi-generator-cli-7.23.0.jar -O openapi-generator-cli.jar
127+
wget https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.24.0/openapi-generator-cli-7.24.0.jar -O openapi-generator-cli.jar
128128
```
129129

130130
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.
131131

132132
```powershell
133-
Invoke-WebRequest -OutFile openapi-generator-cli.jar https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.23.0/openapi-generator-cli-7.23.0.jar
133+
Invoke-WebRequest -OutFile openapi-generator-cli.jar https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.24.0/openapi-generator-cli-7.24.0.jar
134134
```
135135
<!-- /RELEASE_VERSION -->
136136

docs/plugins.md

Lines changed: 2 additions & 2 deletions
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.23.0</version>
19+
<version>7.24.0</version>
2020
<executions>
2121
<execution>
2222
<goals>
@@ -130,7 +130,7 @@ This Mill library provides a Mill module that can be used to generate code from
130130
```scala
131131
//| mill-version: 1.0.6
132132
//| mvnDeps:
133-
//| - org.openapitools:openapi-generator-mill-plugin:7.20.0 # 1.
133+
//| - org.openapitools:openapi-generator-mill-plugin:7.24.0 # 1.
134134

135135
import mill.*
136136

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ task validateGoodSpec(type: org.openapitools.generator.gradle.plugin.tasks.Valid
9898
[source,group]
9999
----
100100
plugins {
101-
id "org.openapi.generator" version "7.23.0"
101+
id "org.openapi.generator" version "7.24.0"
102102
}
103103
----
104104

@@ -114,7 +114,7 @@ buildscript {
114114
// url "https://plugins.gradle.org/m2/"
115115
}
116116
dependencies {
117-
classpath "org.openapitools:openapi-generator-gradle-plugin:7.23.0"
117+
classpath "org.openapitools:openapi-generator-gradle-plugin:7.24.0"
118118
}
119119
}
120120
@@ -950,7 +950,7 @@ buildscript {
950950
}
951951
dependencies {
952952
classpath 'com.android.tools.build:gradle:3.2.1'
953-
classpath('org.openapitools:openapi-generator-gradle-plugin:7.23.0') {
953+
classpath('org.openapitools:openapi-generator-gradle-plugin:7.24.0') {
954954
exclude group: 'com.google.guava'
955955
}
956956
}

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Local Spec Sample
22

3-
This example assumes you have Gradle 6.8.3+ installed. No gradle wrapper is provided in samples.
3+
This example assumes you have Gradle 7.6.0+ installed. No gradle wrapper is provided in samples.
44

55
First, publish the openapi-generator-gradle-plugin locally via `./gradlew assemble publishToMavenLocal` in the module directory.
66

@@ -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.23.0 openApiValidate
22+
gradle -PopenApiGeneratorVersion=7.24.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.23.0</version>
15+
<version>7.24.0</version>
1616
<!-- /RELEASE_VERSION -->
1717
<executions>
1818
<execution>

0 commit comments

Comments
 (0)