Skip to content

Commit 0cc9b69

Browse files
authored
3.3.2 release (#1353)
* prepare 3.3.2 release * update script to remove outdated reference
1 parent 30474c7 commit 0cc9b69

File tree

18 files changed

+23
-27
lines changed

18 files changed

+23
-27
lines changed

CI/circle_parallel.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ elif [ "$NODE_INDEX" = "2" ]; then
1515
java -version
1616
#export GO_POST_PROCESS_FILE="/usr/local/bin/gofmt -w"
1717
# not formatting the code as different go versions may format the code a bit different
18-
./bin/utils/ensure-up-to-date
18+
#./bin/utils/ensure-up-to-date
1919
else
2020
echo "Running node $NODE_INDEX to test 'samples.circleci.jdk7' defined in pom.xml ..."
2121
sudo update-java-alternatives -s java-1.7.0-openjdk-amd64

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<div align="center">
44

5-
[Master](https://github.com/OpenAPITools/openapi-generator/tree/master) (`3.3.1`): [![Build Status](https://img.shields.io/travis/OpenAPITools/openapi-generator/master.svg?label=Integration%20Test)](https://travis-ci.org/OpenAPITools/openapi-generator)
5+
[Master](https://github.com/OpenAPITools/openapi-generator/tree/master) (`3.3.2`): [![Build Status](https://img.shields.io/travis/OpenAPITools/openapi-generator/master.svg?label=Integration%20Test)](https://travis-ci.org/OpenAPITools/openapi-generator)
66
[![Integration Test2](https://circleci.com/gh/OpenAPITools/openapi-generator.svg?style=shield)](https://circleci.com/gh/OpenAPITools/openapi-generator)
77
[![Run Status](https://api.shippable.com/projects/5af6bf74e790f4070084a115/badge?branch=master)](https://app.shippable.com/github/OpenAPITools/openapi-generator)
88
[![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)
@@ -89,8 +89,8 @@ OpenAPI Generator Version | Release Date | Notes
8989
---------------------------- | ------------ | -----
9090
4.0.0 (upcoming major release) [SNAPSHOT](https://oss.sonatype.org/content/repositories/snapshots/org/openapitools/openapi-generator-cli/4.0.0-SNAPSHOT/)| TBD | Major release with breaking changes (no fallback)
9191
3.4.0 (upcoming minor release) [SNAPSHOT](https://oss.sonatype.org/content/repositories/snapshots/org/openapitools/openapi-generator-cli/3.4.0-SNAPSHOT/)| 01.11.2018 | Minor release (breaking changes with fallbacks)
92-
3.3.2 (current master, upcoming patch release) [SNAPSHOT](https://oss.sonatype.org/content/repositories/snapshots/org/openapitools/openapi-generator-cli/3.3.2-SNAPSHOT/) | 29.10.2018 | Bugfix release
93-
[3.3.1](https://github.com/OpenAPITools/openapi-generator/releases/tag/v3.3.1) (latest stable release) | 15.10.2018 | Bugfix release
92+
3.3.2 (current master, upcoming patch release) [SNAPSHOT](https://oss.sonatype.org/content/repositories/snapshots/org/openapitools/openapi-generator-cli/3.3.2-SNAPSHOT/) | 31.10.2018 | Bugfix release
93+
[3.3.2](https://github.com/OpenAPITools/openapi-generator/releases/tag/v3.3.2) (latest stable release) | 31.10.2018 | Bugfix release
9494

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

@@ -146,16 +146,16 @@ See the different versions of the [openapi-generator-cli](https://mvnrepository.
146146

147147
If you're looking for the latest stable version, you can grab it directly from Maven.org (Java 8 runtime at a minimum):
148148

149-
JAR location: `http://central.maven.org/maven2/org/openapitools/openapi-generator-cli/3.3.1/openapi-generator-cli-3.3.1.jar`
149+
JAR location: `http://central.maven.org/maven2/org/openapitools/openapi-generator-cli/3.3.2/openapi-generator-cli-3.3.2.jar`
150150

151151
For **Mac/Linux** users:
152152
```sh
153-
wget http://central.maven.org/maven2/org/openapitools/openapi-generator-cli/3.3.1/openapi-generator-cli-3.3.1.jar -O openapi-generator-cli.jar
153+
wget http://central.maven.org/maven2/org/openapitools/openapi-generator-cli/3.3.2/openapi-generator-cli-3.3.2.jar -O openapi-generator-cli.jar
154154
```
155155

156156
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.
157157
```
158-
Invoke-WebRequest -OutFile openapi-generator-cli.jar http://central.maven.org/maven2/org/openapitools/openapi-generator-cli/3.3.1/openapi-generator-cli-3.3.1.jar
158+
Invoke-WebRequest -OutFile openapi-generator-cli.jar http://central.maven.org/maven2/org/openapitools/openapi-generator-cli/3.3.2/openapi-generator-cli-3.3.2.jar
159159
```
160160

161161
After downloading the JAR, run `java -jar openapi-generator-cli.jar help` to show the usage.

bin/utils/release_version_update.sh

+1-5
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,7 @@ fi
3333

3434
echo "Release preparation: replacing $FROM with $TO in different files"
3535

36-
declare -a files=("CI/pom.xml.bash"
37-
"CI/pom.xml.circleci"
38-
"CI/pom.xml.circleci.java7"
39-
"CI/pom.xml.ios"
40-
"modules/openapi-generator-cli/pom.xml"
36+
declare -a files=("modules/openapi-generator-cli/pom.xml"
4137
"modules/openapi-generator-gradle-plugin/gradle.properties"
4238
"modules/openapi-generator-gradle-plugin/pom.xml"
4339
"modules/openapi-generator-maven-plugin/pom.xml"

modules/openapi-generator-cli/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.openapitools</groupId>
55
<artifactId>openapi-generator-project</artifactId>
6-
<version>3.3.2-SNAPSHOT</version>
6+
<version>3.3.2</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ buildscript {
4848
mavenCentral()
4949
}
5050
dependencies {
51-
classpath "org.openapitools:openapi-generator-gradle-plugin:3.3.1"
51+
classpath "org.openapitools:openapi-generator-gradle-plugin:3.3.2"
5252
}
5353
}
5454

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
openApiGeneratorVersion=3.3.2-SNAPSHOT
1+
openApiGeneratorVersion=3.3.2
22

33
# BEGIN placeholders
44
# these are just placeholders to allow contributors to build directly

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.openapitools</groupId>
55
<artifactId>openapi-generator-project</artifactId>
6-
<version>3.3.2-SNAPSHOT</version>
6+
<version>3.3.2</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ gradle generateGoWithInvalidSpec
1717
The samples can be tested against other versions of the plugin using the `openApiGeneratorVersion` property. For example:
1818

1919
```bash
20-
gradle -PopenApiGeneratorVersion=3.3.1 openApiValidate
20+
gradle -PopenApiGeneratorVersion=3.3.2 openApiValidate
2121
```
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
openApiGeneratorVersion=3.3.1
1+
openApiGeneratorVersion=3.3.2

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Add to your `build->plugins` section (default phase is `generate-sources` phase)
1111
<plugin>
1212
<groupId>org.openapitools</groupId>
1313
<artifactId>openapi-generator-maven-plugin</artifactId>
14-
<version>3.3.1</version>
14+
<version>3.3.2</version>
1515
<executions>
1616
<execution>
1717
<goals>

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<plugin>
1313
<groupId>org.openapitools</groupId>
1414
<artifactId>openapi-generator-maven-plugin</artifactId>
15-
<version>3.3.1</version>
15+
<version>3.3.2</version>
1616
<executions>
1717
<execution>
1818
<goals>

modules/openapi-generator-maven-plugin/examples/non-java-invalid-spec.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<plugin>
1313
<groupId>org.openapitools</groupId>
1414
<artifactId>openapi-generator-maven-plugin</artifactId>
15-
<version>3.3.1</version>
15+
<version>3.3.2</version>
1616
<executions>
1717
<execution>
1818
<goals>

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<plugin>
1313
<groupId>org.openapitools</groupId>
1414
<artifactId>openapi-generator-maven-plugin</artifactId>
15-
<version>3.3.1</version>
15+
<version>3.3.2</version>
1616
<executions>
1717
<execution>
1818
<goals>

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.openapitools</groupId>
66
<artifactId>openapi-generator-project</artifactId>
7-
<version>3.3.2-SNAPSHOT</version>
7+
<version>3.3.2</version>
88
<relativePath>../..</relativePath>
99
</parent>
1010
<artifactId>openapi-generator-maven-plugin</artifactId>

modules/openapi-generator-online/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.openapitools</groupId>
55
<artifactId>openapi-generator-project</artifactId>
6-
<version>3.3.2-SNAPSHOT</version>
6+
<version>3.3.2</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<artifactId>openapi-generator-online</artifactId>

modules/openapi-generator/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.openapitools</groupId>
55
<artifactId>openapi-generator-project</artifactId>
6-
<version>3.3.2-SNAPSHOT</version>
6+
<version>3.3.2</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<artifactId>openapi-generator-project</artifactId>
1010
<packaging>pom</packaging>
1111
<name>openapi-generator-project</name>
12-
<version>3.3.2-SNAPSHOT</version>
12+
<version>3.3.2</version>
1313
<url>https://github.com/openapitools/openapi-generator</url>
1414
<scm>
1515
<connection>scm:git:git@github.com:openapitools/openapi-generator.git</connection>

samples/meta-codegen/lib/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
</dependencies>
117117
<properties>
118118
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
119-
<openapi-generator-version>3.3.2-SNAPSHOT</openapi-generator-version>
119+
<openapi-generator-version>3.3.2</openapi-generator-version>
120120
<maven-plugin-version>1.0.0</maven-plugin-version>
121121
<junit-version>4.8.1</junit-version>
122122
</properties>

0 commit comments

Comments
 (0)