diff --git a/CHANGES.md b/CHANGES.md index cfa5c8b1..59cec8ff 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -2,6 +2,17 @@ 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. +## v1.2.0 (2019-07-31) + +* ๐ŸŽ Remove leading slash if Swagger Spec are specifying a basePath [#50] +* ๐Ÿ› Fix handling of Top Level Operation Headers [#52] +* ๐Ÿงช Add JUnit Tests for the plugin classes [#48] +* ๐Ÿงช Add Integration tests for response classes [#42] +* โš™๏ธ Configure Detekt [#44] +* โš™๏ธ Updating all the dependencies [#43] + +Thanks to @cortinico for the support with this release. + ## v1.1.1 (2019-07-09) * ๐Ÿ› Specify Java source and target compatibility version to Java8 [#39] @@ -36,3 +47,9 @@ Thanks to @cortinico, @MatthewTPage, @GuilhE, @macisamuele and @redwarp for the [#30]: https://github.com/Yelp/swagger-gradle-codegen/pull/30/ [#32]: https://github.com/Yelp/swagger-gradle-codegen/pull/32/ [#39]: https://github.com/Yelp/swagger-gradle-codegen/pull/39/ +[#42]: https://github.com/Yelp/swagger-gradle-codegen/pull/42/ +[#43]: https://github.com/Yelp/swagger-gradle-codegen/pull/43/ +[#44]: https://github.com/Yelp/swagger-gradle-codegen/pull/44/ +[#48]: https://github.com/Yelp/swagger-gradle-codegen/pull/48/ +[#50]: https://github.com/Yelp/swagger-gradle-codegen/pull/50/ +[#52]: https://github.com/Yelp/swagger-gradle-codegen/pull/52/ diff --git a/buildSrc/src/main/java/com/yelp/codegen/gradle/PublishingVersions.kt b/buildSrc/src/main/java/com/yelp/codegen/gradle/PublishingVersions.kt index 2c912ffa..2a96bdf9 100644 --- a/buildSrc/src/main/java/com/yelp/codegen/gradle/PublishingVersions.kt +++ b/buildSrc/src/main/java/com/yelp/codegen/gradle/PublishingVersions.kt @@ -1,7 +1,7 @@ @file:Suppress("Unused") object PublishingVersions { - const val PLUGIN_VERSION = "1.2.0-SNAPSHOT" + const val PLUGIN_VERSION = "1.2.0" const val PLUGIN_GROUP = "com.yelp.codegen" const val PLUGIN_ARTIFACT = "plugin" } diff --git a/samples/generated-code/build.gradle b/samples/generated-code/build.gradle index 8b7c4236..dff70a42 100644 --- a/samples/generated-code/build.gradle +++ b/samples/generated-code/build.gradle @@ -10,7 +10,7 @@ buildscript { dependencies { classpath "com.android.tools.build:gradle:3.4.2" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.41" - classpath "com.yelp.codegen:plugin:1.2.0-SNAPSHOT" + classpath "com.yelp.codegen:plugin:1.2.0" } } diff --git a/samples/groovy-android/build.gradle b/samples/groovy-android/build.gradle index 2646c557..cae58e98 100644 --- a/samples/groovy-android/build.gradle +++ b/samples/groovy-android/build.gradle @@ -10,7 +10,7 @@ buildscript { dependencies { classpath "com.android.tools.build:gradle:3.4.2" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.41" - classpath "com.yelp.codegen:plugin:1.2.0-SNAPSHOT" + classpath "com.yelp.codegen:plugin:1.2.0" } } diff --git a/samples/junit-tests/build.gradle b/samples/junit-tests/build.gradle index b57c8957..167197fb 100644 --- a/samples/junit-tests/build.gradle +++ b/samples/junit-tests/build.gradle @@ -10,7 +10,7 @@ buildscript { dependencies { classpath "com.android.tools.build:gradle:3.4.2" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.41" - classpath "com.yelp.codegen:plugin:1.2.0-SNAPSHOT" + classpath "com.yelp.codegen:plugin:1.2.0" classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.0.0-RC16" } } diff --git a/samples/kotlin-android/build.gradle.kts b/samples/kotlin-android/build.gradle.kts index 0d01f594..fbbe315d 100644 --- a/samples/kotlin-android/build.gradle.kts +++ b/samples/kotlin-android/build.gradle.kts @@ -1,7 +1,7 @@ plugins { id("com.android.library") version "3.4.2" kotlin("android") version "1.3.41" - id("com.yelp.codegen.plugin") version "1.2.0-SNAPSHOT" + id("com.yelp.codegen.plugin") version "1.2.0" } android {