Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare 4.0.3-SNAPSHOT #3185

Merged
merged 5 commits into from
Jun 20, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<div align="center">

[Master](https://github.com/OpenAPITools/openapi-generator/tree/master) (`4.0.2`): [![Build Status](https://img.shields.io/travis/OpenAPITools/openapi-generator/master.svg?label=Integration%20Test)](https://travis-ci.org/OpenAPITools/openapi-generator)
[Master](https://github.com/OpenAPITools/openapi-generator/tree/master) (`4.0.3`): [![Build Status](https://img.shields.io/travis/OpenAPITools/openapi-generator/master.svg?label=Integration%20Test)](https://travis-ci.org/OpenAPITools/openapi-generator)
[![Integration Test2](https://circleci.com/gh/OpenAPITools/openapi-generator.svg?style=shield)](https://circleci.com/gh/OpenAPITools/openapi-generator)
[![Run Status](https://api.shippable.com/projects/5af6bf74e790f4070084a115/badge?branch=master)](https://app.shippable.com/github/OpenAPITools/openapi-generator)
[![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-wh2wu)
Expand Down Expand Up @@ -98,9 +98,9 @@ The OpenAPI Specification has undergone 3 revisions since initial creation in 20
OpenAPI Generator Version | Release Date | Notes
---------------------------- | ------------ | -----
5.0.0 (upcoming major release) [SNAPSHOT](https://oss.sonatype.org/content/repositories/snapshots/org/openapitools/openapi-generator-cli/5.0.0-SNAPSHOT/)| 13.05.2020 | Major release with breaking changes (no fallback)
4.1.0 (upcoming minor release) [SNAPSHOT](https://oss.sonatype.org/content/repositories/snapshots/org/openapitools/openapi-generator-cli/4.1.0-SNAPSHOT/)| 15.07.2019 | Minor release (breaking changes with fallbacks)
4.0.2 (upcoming patch release) [SNAPSHOT](https://oss.sonatype.org/content/repositories/snapshots/org/openapitools/openapi-generator-cli/4.0.2-SNAPSHOT/)| 15.06.2019 | Patch release (minor bug fixes, etc)
[4.0.2](https://github.com/OpenAPITools/openapi-generator/releases/tag/v4.0.2) (latest stable release) | 31.05.2019 | Patch release (bug fixes, minor enhancements, etc)
4.1.0 (upcoming minor release) [SNAPSHOT](https://oss.sonatype.org/content/repositories/snapshots/org/openapitools/openapi-generator-cli/4.1.0-SNAPSHOT/)| 31.07.2019 | Minor release (breaking changes with fallbacks)
4.0.3 (upcoming patch release) [SNAPSHOT](https://oss.sonatype.org/content/repositories/snapshots/org/openapitools/openapi-generator-cli/4.0.3-SNAPSHOT/)| 04.07.2019 | Patch release (minor bug fixes, etc)
[4.0.2](https://github.com/OpenAPITools/openapi-generator/releases/tag/v4.0.2) (latest stable release) | 20.06.2019 | Patch release (bug fixes, minor enhancements, etc)

OpenAPI Spec compatibility: 1.0, 1.1, 1.2, 2.0, 3.0

Expand Down
2 changes: 1 addition & 1 deletion modules/openapi-generator-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-project</artifactId>
<version>4.0.2</version>
<version>4.0.3-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion modules/openapi-generator-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>openapi-generator-project</artifactId>
<groupId>org.openapitools</groupId>
<version>4.0.2</version>
<version>4.0.3-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
6 changes: 3 additions & 3 deletions modules/openapi-generator-gradle-plugin/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ compileJava.dependsOn tasks.openApiGenerate
[source,group]
----
plugins {
id "org.openapi.generator" version "4.0.2"
id "org.openapi.generator" version "4.0.3-SNAPSHOT"
}
----

Expand All @@ -59,7 +59,7 @@ buildscript {
// url "https://plugins.gradle.org/m2/"
}
dependencies {
classpath "org.openapitools:openapi-generator-gradle-plugin:4.0.2"
classpath "org.openapitools:openapi-generator-gradle-plugin:4.0.3-SNAPSHOT"
}
}

Expand Down Expand Up @@ -605,7 +605,7 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath('org.openapitools:openapi-generator-gradle-plugin:4.0.2') {
classpath('org.openapitools:openapi-generator-gradle-plugin:4.0.3-SNAPSHOT') {
exclude group: 'com.google.guava'
}
}
Expand Down
2 changes: 1 addition & 1 deletion modules/openapi-generator-gradle-plugin/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
openApiGeneratorVersion=4.0.2
openApiGeneratorVersion=4.0.3-SNAPSHOT

# BEGIN placeholders
# these are just placeholders to allow contributors to build directly
Expand Down
2 changes: 1 addition & 1 deletion modules/openapi-generator-gradle-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-project</artifactId>
<version>4.0.2</version>
<version>4.0.3-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ gradle generateGoWithInvalidSpec
The samples can be tested against other versions of the plugin using the `openApiGeneratorVersion` property. For example:

```bash
gradle -PopenApiGeneratorVersion=4.0.2 openApiValidate
gradle -PopenApiGeneratorVersion=4.0.3-SNAPSHOT openApiValidate
```
Original file line number Diff line number Diff line change
@@ -1 +1 @@
openApiGeneratorVersion=4.0.2
openApiGeneratorVersion=4.0.3-SNAPSHOT
2 changes: 1 addition & 1 deletion modules/openapi-generator-maven-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Add to your `build->plugins` section (default phase is `generate-sources` phase)
<plugin>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
<version>4.0.2</version>
<version>4.0.3-SNAPSHOT</version>
<executions>
<execution>
<goals>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<plugin>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
<version>4.0.2</version>
<version>4.0.3-SNAPSHOT</version>
<executions>
<execution>
<goals>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<plugin>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
<version>4.0.2</version>
<version>4.0.3-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<plugin>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
<version>4.0.2</version>
<version>4.0.3-SNAPSHOT</version>
<executions>
<execution>
<goals>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<plugin>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
<version>4.0.2</version>
<version>4.0.3-SNAPSHOT</version>
<executions>
<execution>
<goals>
Expand Down
2 changes: 1 addition & 1 deletion modules/openapi-generator-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-project</artifactId>
<version>4.0.2</version>
<version>4.0.3-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
<artifactId>openapi-generator-maven-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion modules/openapi-generator-online/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-project</artifactId>
<version>4.0.2</version>
<version>4.0.3-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
<artifactId>openapi-generator-online</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions modules/openapi-generator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-project</artifactId>
<version>4.0.2</version>
<version>4.0.3-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down Expand Up @@ -313,7 +313,7 @@
<dependency>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-core</artifactId>
<version>4.0.2</version>
<version>4.0.3-SNAPSHOT</version>
</dependency>
</dependencies>
<repositories>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<artifactId>openapi-generator-project</artifactId>
<packaging>pom</packaging>
<name>openapi-generator-project</name>
<version>4.0.2</version>
<version>4.0.3-SNAPSHOT</version>
<url>https://github.com/openapitools/openapi-generator</url>
<scm>
<connection>scm:git:[email protected]:openapitools/openapi-generator.git</connection>
Expand Down
2 changes: 1 addition & 1 deletion samples/client/petstore/R/.openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2-SNAPSHOT
4.0.3-SNAPSHOT
2 changes: 1 addition & 1 deletion samples/client/petstore/apex/.openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2-SNAPSHOT
4.0.3-SNAPSHOT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2-SNAPSHOT
4.0.3-SNAPSHOT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2-SNAPSHOT
4.0.3-SNAPSHOT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2-SNAPSHOT
4.0.3-SNAPSHOT
2 changes: 1 addition & 1 deletion samples/client/petstore/elixir/.openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2-SNAPSHOT
4.0.3-SNAPSHOT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2-SNAPSHOT
4.0.3-SNAPSHOT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2-SNAPSHOT
4.0.3-SNAPSHOT
2 changes: 1 addition & 1 deletion samples/client/petstore/groovy/.openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2-SNAPSHOT
4.0.3-SNAPSHOT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2-SNAPSHOT
4.0.3-SNAPSHOT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2-SNAPSHOT
4.0.3-SNAPSHOT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2-SNAPSHOT
4.0.3-SNAPSHOT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2-SNAPSHOT
4.0.3-SNAPSHOT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2-SNAPSHOT
4.0.3-SNAPSHOT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2-SNAPSHOT
4.0.3-SNAPSHOT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2-SNAPSHOT
4.0.3-SNAPSHOT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2-SNAPSHOT
4.0.3-SNAPSHOT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2-SNAPSHOT
4.0.3-SNAPSHOT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2-SNAPSHOT
4.0.3-SNAPSHOT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2-SNAPSHOT
4.0.3-SNAPSHOT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2-SNAPSHOT
4.0.3-SNAPSHOT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2-SNAPSHOT
4.0.3-SNAPSHOT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2-SNAPSHOT
4.0.3-SNAPSHOT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2-SNAPSHOT
4.0.3-SNAPSHOT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2-SNAPSHOT
4.0.3-SNAPSHOT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2-SNAPSHOT
4.0.3-SNAPSHOT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2-SNAPSHOT
4.0.3-SNAPSHOT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2-SNAPSHOT
4.0.3-SNAPSHOT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2-SNAPSHOT
4.0.3-SNAPSHOT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2-SNAPSHOT
4.0.3-SNAPSHOT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2-SNAPSHOT
4.0.3-SNAPSHOT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2-SNAPSHOT
4.0.3-SNAPSHOT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2-SNAPSHOT
4.0.3-SNAPSHOT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2-SNAPSHOT
4.0.3-SNAPSHOT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2-SNAPSHOT
4.0.3-SNAPSHOT
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.2-SNAPSHOT
* OpenAPI Generator version: 4.0.3-SNAPSHOT
*
* Do not edit the class manually.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.2-SNAPSHOT
* OpenAPI Generator version: 4.0.3-SNAPSHOT
*
* Do not edit the class manually.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.2-SNAPSHOT
* OpenAPI Generator version: 4.0.3-SNAPSHOT
*
* Do not edit the class manually.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
*
* OpenAPI Generator version: 4.0.2-SNAPSHOT
* OpenAPI Generator version: 4.0.3-SNAPSHOT
*
* Do not edit the class manually.
*
Expand Down
Loading