Skip to content

Commit e2c458b

Browse files
authored
Prepare 7.10.0 (#19809)
* Revert "prepare 7.9.0 release (#19808)" This reverts commit 4145000. * prepare 7.10.0 snapshot * update doc * update samples
1 parent 4145000 commit e2c458b

File tree

6,798 files changed

+7003
-7003
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

6,798 files changed

+7003
-7003
lines changed

README.md

Lines changed: 8 additions & 8 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.9.0`):
18+
[Master](https://github.com/OpenAPITools/openapi-generator/tree/master) (`7.10.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)
@@ -129,8 +129,8 @@ The OpenAPI Specification has undergone 3 revisions since initial creation in 20
129129

130130
| OpenAPI Generator Version | Release Date | Notes |
131131
| --------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------ | ------------------------------------------------- |
132-
| 7.9.0 (upcoming minor release) [SNAPSHOT](https://oss.sonatype.org/content/repositories/snapshots/org/openapitools/openapi-generator-cli/7.9.0-SNAPSHOT/) | 07.10.2024 | Minor release with breaking changes (with fallback) |
133-
| [7.8.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v7.8.0) (latest stable release) | 19.08.2024 | Minor release with breaking changes (with fallback) |
132+
| 7.10.0 (upcoming minor release) [SNAPSHOT](https://oss.sonatype.org/content/repositories/snapshots/org/openapitools/openapi-generator-cli/7.10.0-SNAPSHOT/) | 07.11.2024 | Minor release with breaking changes (with fallback) |
133+
| [7.9.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v7.8.0) (latest stable release) | 07.10.2024 | Minor release with breaking changes (with fallback) |
134134
| [6.6.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v6.6.0) | 11.05.2023 | Minor release with breaking changes (with fallback) |
135135
| [5.4.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v5.4.0) | 31.01.2022 | Minor release with breaking changes (with fallback) |
136136
| [4.3.1](https://github.com/OpenAPITools/openapi-generator/releases/tag/v4.3.1) | 06.05.2020 | Patch release (enhancements, bug fixes, etc) |
@@ -193,16 +193,16 @@ See the different versions of the [openapi-generator-cli](https://search.maven.o
193193
<!-- RELEASE_VERSION -->
194194
If you're looking for the latest stable version, you can grab it directly from Maven.org (Java 11 runtime at a minimum):
195195

196-
JAR location: `https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.8.0/openapi-generator-cli-7.8.0.jar`
196+
JAR location: `https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.9.0/openapi-generator-cli-7.9.0.jar`
197197

198198
For **Mac/Linux** users:
199199
```sh
200-
wget https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.8.0/openapi-generator-cli-7.8.0.jar -O openapi-generator-cli.jar
200+
wget https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.9.0/openapi-generator-cli-7.9.0.jar -O openapi-generator-cli.jar
201201
```
202202

203203
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.
204204
```
205-
Invoke-WebRequest -OutFile openapi-generator-cli.jar https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.8.0/openapi-generator-cli-7.8.0.jar
205+
Invoke-WebRequest -OutFile openapi-generator-cli.jar https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.9.0/openapi-generator-cli-7.9.0.jar
206206
```
207207

208208
After downloading the JAR, run `java -jar openapi-generator-cli.jar help` to show the usage.
@@ -437,7 +437,7 @@ openapi-generator-cli version
437437
To use a specific version of "openapi-generator-cli"
438438

439439
```sh
440-
openapi-generator-cli version-manager set 7.8.0
440+
openapi-generator-cli version-manager set 7.9.0
441441
```
442442

443443
Or install it as dev-dependency:
@@ -464,7 +464,7 @@ java -jar modules/openapi-generator-cli/target/openapi-generator-cli.jar generat
464464
(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`)
465465

466466
<!-- RELEASE_VERSION -->
467-
You can also download the JAR (latest release) directly from [maven.org](https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.8.0/openapi-generator-cli-7.8.0.jar)
467+
You can also download the JAR (latest release) directly from [maven.org](https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.9.0/openapi-generator-cli-7.9.0.jar)
468468
<!-- /RELEASE_VERSION -->
469469

470470
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.8.0
25+
openapi-generator-cli version-manager set 7.9.0
2626
```
2727
<!-- /RELEASE_VERSION -->
2828
To install the tool as a dev dependency in your current project:
@@ -103,18 +103,18 @@ docker run --rm \
103103
<!-- RELEASE_VERSION -->
104104
If you're looking for the latest stable version, you can grab it directly from Maven.org (Java 11 runtime at a minimum):
105105

106-
JAR location: `https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.8.0/openapi-generator-cli-7.8.0.jar`
106+
JAR location: `https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.9.0/openapi-generator-cli-7.9.0.jar`
107107

108108
For **Mac/Linux** users:
109109

110110
```bash
111-
wget https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.8.0/openapi-generator-cli-7.8.0.jar -O openapi-generator-cli.jar
111+
wget https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.9.0/openapi-generator-cli-7.9.0.jar -O openapi-generator-cli.jar
112112
```
113113

114114
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.
115115

116116
```powershell
117-
Invoke-WebRequest -OutFile openapi-generator-cli.jar https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.8.0/openapi-generator-cli-7.8.0.jar
117+
Invoke-WebRequest -OutFile openapi-generator-cli.jar https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.9.0/openapi-generator-cli-7.9.0.jar
118118
```
119119
<!-- /RELEASE_VERSION -->
120120

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.8.0</version>
19+
<version>7.9.0</version>
2020
<executions>
2121
<execution>
2222
<goals>

modules/openapi-generator-cli/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>org.openapitools</groupId>
55
<artifactId>openapi-generator-project</artifactId>
66
<!-- RELEASE_VERSION -->
7-
<version>7.9.0</version>
7+
<version>7.10.0-SNAPSHOT</version>
88
<!-- /RELEASE_VERSION -->
99
<relativePath>../../pom.xml</relativePath>
1010
</parent>

modules/openapi-generator-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>openapi-generator-project</artifactId>
77
<groupId>org.openapitools</groupId>
88
<!-- RELEASE_VERSION -->
9-
<version>7.9.0</version>
9+
<version>7.10.0-SNAPSHOT</version>
1010
<!-- /RELEASE_VERSION -->
1111
<relativePath>../../pom.xml</relativePath>
1212
</parent>

modules/openapi-generator-gradle-plugin/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# RELEASE_VERSION
2-
openApiGeneratorVersion=7.9.0
2+
openApiGeneratorVersion=7.10.0-SNAPSHOT
33
# /RELEASE_VERSION
44

55
# BEGIN placeholders

modules/openapi-generator-gradle-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>org.openapitools</groupId>
55
<artifactId>openapi-generator-project</artifactId>
66
<!-- RELEASE_VERSION -->
7-
<version>7.9.0</version>
7+
<version>7.10.0-SNAPSHOT</version>
88
<!-- /RELEASE_VERSION -->
99
<relativePath>../../pom.xml</relativePath>
1010
</parent>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# RELEASE_VERSION
2-
openApiGeneratorVersion=7.9.0
2+
openApiGeneratorVersion=7.10.0-SNAPSHOT
33
# /RELEASE_VERSION

modules/openapi-generator-maven-plugin/examples/java-client.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<groupId>org.openapitools</groupId>
1414
<artifactId>openapi-generator-maven-plugin</artifactId>
1515
<!-- RELEASE_VERSION -->
16-
<version>7.9.0</version>
16+
<version>7.10.0-SNAPSHOT</version>
1717
<!-- /RELEASE_VERSION -->
1818
<executions>
1919
<execution>

modules/openapi-generator-maven-plugin/examples/kotlin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<groupId>org.openapitools</groupId>
1616
<artifactId>openapi-generator-maven-plugin</artifactId>
1717
<!-- RELEASE_VERSION -->
18-
<version>7.9.0</version>
18+
<version>7.10.0-SNAPSHOT</version>
1919
<!-- /RELEASE_VERSION -->
2020
<executions>
2121
<execution>

0 commit comments

Comments
 (0)