Skip to content

Commit bdc9e0f

Browse files
authored
Merge pull request #54 from Yelp/prepare-1.2.0
Prepare Release v1.2.0
2 parents 88ac0ef + 89df9d4 commit bdc9e0f

File tree

6 files changed

+22
-5
lines changed

6 files changed

+22
-5
lines changed

CHANGES.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
Here you can find the release notes for this project. Please note that list of releases is available also in the [releases](https://github.com/Yelp/swagger-gradle-codegen/releases) page on Github.
44

5+
## v1.2.0 (2019-07-31)
6+
7+
* 🎁 Remove leading slash if Swagger Spec are specifying a basePath [#50]
8+
* 🐛 Fix handling of Top Level Operation Headers [#52]
9+
* 🧪 Add JUnit Tests for the plugin classes [#48]
10+
* 🧪 Add Integration tests for response classes [#42]
11+
* ⚙️ Configure Detekt [#44]
12+
* ⚙️ Updating all the dependencies [#43]
13+
14+
Thanks to @cortinico for the support with this release.
15+
516
## v1.1.1 (2019-07-09)
617

718
* 🐛 Specify Java source and target compatibility version to Java8 [#39]
@@ -36,3 +47,9 @@ Thanks to @cortinico, @MatthewTPage, @GuilhE, @macisamuele and @redwarp for the
3647
[#30]: https://github.com/Yelp/swagger-gradle-codegen/pull/30/
3748
[#32]: https://github.com/Yelp/swagger-gradle-codegen/pull/32/
3849
[#39]: https://github.com/Yelp/swagger-gradle-codegen/pull/39/
50+
[#42]: https://github.com/Yelp/swagger-gradle-codegen/pull/42/
51+
[#43]: https://github.com/Yelp/swagger-gradle-codegen/pull/43/
52+
[#44]: https://github.com/Yelp/swagger-gradle-codegen/pull/44/
53+
[#48]: https://github.com/Yelp/swagger-gradle-codegen/pull/48/
54+
[#50]: https://github.com/Yelp/swagger-gradle-codegen/pull/50/
55+
[#52]: https://github.com/Yelp/swagger-gradle-codegen/pull/52/
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@file:Suppress("Unused")
22

33
object PublishingVersions {
4-
const val PLUGIN_VERSION = "1.2.0-SNAPSHOT"
4+
const val PLUGIN_VERSION = "1.2.0"
55
const val PLUGIN_GROUP = "com.yelp.codegen"
66
const val PLUGIN_ARTIFACT = "plugin"
77
}

samples/generated-code/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ buildscript {
1010
dependencies {
1111
classpath "com.android.tools.build:gradle:3.4.2"
1212
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.41"
13-
classpath "com.yelp.codegen:plugin:1.2.0-SNAPSHOT"
13+
classpath "com.yelp.codegen:plugin:1.2.0"
1414
}
1515
}
1616

samples/groovy-android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ buildscript {
1010
dependencies {
1111
classpath "com.android.tools.build:gradle:3.4.2"
1212
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.41"
13-
classpath "com.yelp.codegen:plugin:1.2.0-SNAPSHOT"
13+
classpath "com.yelp.codegen:plugin:1.2.0"
1414
}
1515
}
1616

samples/junit-tests/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ buildscript {
1010
dependencies {
1111
classpath "com.android.tools.build:gradle:3.4.2"
1212
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.41"
13-
classpath "com.yelp.codegen:plugin:1.2.0-SNAPSHOT"
13+
classpath "com.yelp.codegen:plugin:1.2.0"
1414
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.0.0-RC16"
1515
}
1616
}

samples/kotlin-android/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id("com.android.library") version "3.4.2"
33
kotlin("android") version "1.3.41"
4-
id("com.yelp.codegen.plugin") version "1.2.0-SNAPSHOT"
4+
id("com.yelp.codegen.plugin") version "1.2.0"
55
}
66

77
android {

0 commit comments

Comments
 (0)