Skip to content

Commit 0136aee

Browse files
authored
Prepare 3.3.1 patch release (#1247)
* release_version_update * comment out ensure up to date * release_version_update_docs * update release table
1 parent 0b6e63b commit 0136aee

File tree

17 files changed

+22
-23
lines changed

17 files changed

+22
-23
lines changed

Diff for: 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

Diff for: README.md

+5-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.0`): [![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.1`): [![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,7 @@ 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.1 (current master, upcoming patch release) [SNAPSHOT](https://oss.sonatype.org/content/repositories/snapshots/org/openapitools/openapi-generator-cli/3.3.1-SNAPSHOT/) | 15.10.2018 | Bugfix release
93-
[3.3.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v3.3.0) (latest stable release) | 01.10.2018 | Minor release (breaking changes with fallbacks)
92+
[3.3.1](https://github.com/OpenAPITools/openapi-generator/releases/tag/v3.3.1) (latest stable release) | 15.10.2018 | Bugfix release
9493

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

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

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

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

151150
For **Mac/Linux** users:
152151
```sh
153-
wget http://central.maven.org/maven2/org/openapitools/openapi-generator-cli/3.3.0/openapi-generator-cli-3.3.0.jar -O openapi-generator-cli.jar
152+
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
154153
```
155154

156155
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.
157156
```
158-
Invoke-WebRequest -OutFile openapi-generator-cli.jar http://central.maven.org/maven2/org/openapitools/openapi-generator-cli/3.3.0/openapi-generator-cli-3.3.0.jar
157+
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
159158
```
160159

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

Diff for: 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.1-SNAPSHOT</version>
6+
<version>3.3.1</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

Diff for: 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.0"
51+
classpath "org.openapitools:openapi-generator-gradle-plugin:3.3.1"
5252
}
5353
}
5454

Diff for: 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.1-SNAPSHOT
1+
openApiGeneratorVersion=3.3.1
22

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

Diff for: 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.1-SNAPSHOT</version>
6+
<version>3.3.1</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

Diff for: 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.0 openApiValidate
20+
gradle -PopenApiGeneratorVersion=3.3.1 openApiValidate
2121
```
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
openApiGeneratorVersion=3.3.0
1+
openApiGeneratorVersion=3.3.1

Diff for: 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.0</version>
14+
<version>3.3.1</version>
1515
<executions>
1616
<execution>
1717
<goals>

Diff for: 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.0</version>
15+
<version>3.3.1</version>
1616
<executions>
1717
<execution>
1818
<goals>

Diff for: 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.0</version>
15+
<version>3.3.1</version>
1616
<executions>
1717
<execution>
1818
<goals>

Diff for: 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.0</version>
15+
<version>3.3.1</version>
1616
<executions>
1717
<execution>
1818
<goals>

Diff for: 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.1-SNAPSHOT</version>
7+
<version>3.3.1</version>
88
<relativePath>../..</relativePath>
99
</parent>
1010
<artifactId>openapi-generator-maven-plugin</artifactId>

Diff for: 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.1-SNAPSHOT</version>
6+
<version>3.3.1</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<artifactId>openapi-generator-online</artifactId>

Diff for: 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.1-SNAPSHOT</version>
6+
<version>3.3.1</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

Diff for: pom.xml

+2-2
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.1-SNAPSHOT</version>
12+
<version>3.3.1</version>
1313
<url>https://github.com/openapitools/openapi-generator</url>
1414
<scm>
1515
<connection>scm:git:[email protected]:openapitools/openapi-generator.git</connection>
@@ -1341,7 +1341,7 @@
13411341
<swagger-parser-version>2.0.4</swagger-parser-version>
13421342
<swagger-core-version>2.0.4</swagger-core-version>
13431343
<scala-version>2.11.1</scala-version>
1344-
<felix-version>3.3.1-SNAPSHOT</felix-version>
1344+
<felix-version>3.3.1</felix-version>
13451345
<commons-io-version>2.4</commons-io-version>
13461346
<commons-cli-version>1.2</commons-cli-version>
13471347
<junit-version>4.8.1</junit-version>

Diff for: 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.1-SNAPSHOT</openapi-generator-version>
119+
<openapi-generator-version>3.3.1</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)