Skip to content

Commit 2fd23f5

Browse files
authored
Prepare 5.0.0-SNAPSHOT (#7347)
* Revert "Prepare 5.0.0-beta2 release (#7345)" This reverts commit 212b4f7. * update readme
1 parent 212b4f7 commit 2fd23f5

File tree

532 files changed

+540
-539
lines changed

Some content is hidden

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

532 files changed

+540
-539
lines changed

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,8 @@ The OpenAPI Specification has undergone 3 revisions since initial creation in 20
103103
| OpenAPI Generator Version | Release Date | Notes |
104104
| --------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------ | ------------------------------------------------- |
105105
| 5.0.0 (upcoming major release) [SNAPSHOT](https://oss.sonatype.org/content/repositories/snapshots/org/openapitools/openapi-generator-cli/5.0.0-SNAPSHOT/) | TBD | Major release with breaking changes (no fallback) |
106-
| 5.0.0-beta2 (upcoming beta release) [SNAPSHOT](https://oss.sonatype.org/content/repositories/snapshots/org/openapitools/openapi-generator-cli/5.0.0-SNAPSHOT/) | 30.07.2020 | Major beta release with breaking changes (no fallback) |
106+
| 5.0.0-beta3 (upcoming beta release) [SNAPSHOT](https://oss.sonatype.org/content/repositories/snapshots/org/openapitools/openapi-generator-cli/5.0.0-SNAPSHOT/) | 01.11.2020 | Major beta release with breaking changes (no fallback) |
107+
| [5.0.0-beta2](https://github.com/OpenAPITools/openapi-generator/releases/tag/v5.0.0-beta2) (latest beta release) | 04.09.2020 | Major beta release with breaking changes (no fallback) |
107108
| [5.0.0-beta](https://github.com/OpenAPITools/openapi-generator/releases/tag/v5.0.0-beta) (latest beta release) | 30.06.2020 | Major beta release with breaking changes (no fallback) |
108109
| [4.3.1](https://github.com/OpenAPITools/openapi-generator/releases/tag/v4.3.1) (latest stable release) | 06.05.2020 | Patch release (enhancements, bug fixes, etc) |
109110

@@ -161,16 +162,16 @@ See the different versions of the [openapi-generator-cli](https://mvnrepository.
161162
<!-- RELEASE_VERSION -->
162163
If you're looking for the latest stable version, you can grab it directly from Maven.org (Java 8 runtime at a minimum):
163164

164-
JAR location: `https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/5.0.0-beta/openapi-generator-cli-5.0.0-beta.jar`
165+
JAR location: `https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/5.0.0-beta2/openapi-generator-cli-5.0.0-beta2.jar`
165166

166167
For **Mac/Linux** users:
167168
```sh
168-
wget https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/5.0.0-beta/openapi-generator-cli-5.0.0-beta.jar -O openapi-generator-cli.jar
169+
wget https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/5.0.0-beta2/openapi-generator-cli-5.0.0-beta2.jar -O openapi-generator-cli.jar
169170
```
170171

171172
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.
172173
```
173-
Invoke-WebRequest -OutFile openapi-generator-cli.jar https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/5.0.0-beta/openapi-generator-cli-5.0.0-beta.jar
174+
Invoke-WebRequest -OutFile openapi-generator-cli.jar https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/5.0.0-beta2/openapi-generator-cli-5.0.0-beta2.jar
174175
```
175176

176177
After downloading the JAR, run `java -jar openapi-generator-cli.jar help` to show the usage.
@@ -392,10 +393,10 @@ openapi-generator version
392393
```
393394

394395
<!-- RELEASE_VERSION -->
395-
Or install a particular OpenAPI Generator version (e.g. v5.0.0-beta):
396+
Or install a particular OpenAPI Generator version (e.g. v5.0.0-beta2):
396397

397398
```sh
398-
npm install @openapitools/openapi-generator-cli@cli-5.0.0-beta -g
399+
npm install @openapitools/openapi-generator-cli@cli-5.0.0-beta2 -g
399400
```
400401

401402
Or install it as dev-dependency:
@@ -419,7 +420,7 @@ java -jar modules/openapi-generator-cli/target/openapi-generator-cli.jar generat
419420
(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/2_0/petstore.yaml -g php -o c:\temp\php_api_client`)
420421

421422
<!-- RELEASE_VERSION -->
422-
You can also download the JAR (latest release) directly from [maven.org](https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/5.0.0-beta/openapi-generator-cli-5.0.0-beta.jar)
423+
You can also download the JAR (latest release) directly from [maven.org](https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/5.0.0-beta2/openapi-generator-cli-5.0.0-beta2.jar)
423424
<!-- /RELEASE_VERSION -->
424425

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

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>5.0.0-beta2</version>
7+
<version>5.0.0-SNAPSHOT</version>
88
<!-- /RELEASE_VERSION -->
99
<relativePath>../..</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>5.0.0-beta2</version>
9+
<version>5.0.0-SNAPSHOT</version>
1010
<!-- /RELEASE_VERSION -->
1111
<relativePath>../..</relativePath>
1212
</parent>

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

Lines changed: 2 additions & 2 deletions
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 "5.0.0-beta2"
100+
id "org.openapi.generator" version "4.3.1"
101101
}
102102
----
103103

@@ -113,7 +113,7 @@ buildscript {
113113
// url "https://plugins.gradle.org/m2/"
114114
}
115115
dependencies {
116-
classpath "org.openapitools:openapi-generator-gradle-plugin:5.0.0-beta2"
116+
classpath "org.openapitools:openapi-generator-gradle-plugin:4.3.1"
117117
}
118118
}
119119

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=5.0.0-beta2
2+
openApiGeneratorVersion=5.0.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>5.0.0-beta2</version>
7+
<version>5.0.0-SNAPSHOT</version>
88
<!-- /RELEASE_VERSION -->
99
<relativePath>../..</relativePath>
1010
</parent>

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

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

2020
```bash
21-
gradle -PopenApiGeneratorVersion=5.0.0-beta2 openApiValidate
21+
gradle -PopenApiGeneratorVersion=4.3.0 openApiValidate
2222
```

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>5.0.0-beta2</version>
15+
<version>4.3.1</version>
1616
<!-- /RELEASE_VERSION -->
1717
<executions>
1818
<execution>

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>5.0.0-beta2</version>
16+
<version>5.0.0-SNAPSHOT</version>
1717
<!-- /RELEASE_VERSION -->
1818
<executions>
1919
<execution>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<groupId>org.openapitools</groupId>
2020
<artifactId>openapi-generator-maven-plugin</artifactId>
2121
<!-- RELEASE_VERSION -->
22-
<version>5.0.0-beta2</version>
22+
<version>5.0.0-SNAPSHOT</version>
2323
<!-- /RELEASE_VERSION -->
2424
<dependencies>
2525
<dependency>

0 commit comments

Comments
 (0)