Skip to content

Commit

Permalink
Merge pull request #54 from Yelp/prepare-1.2.0
Browse files Browse the repository at this point in the history
Prepare Release v1.2.0
  • Loading branch information
cortinico committed Jul 31, 2019
2 parents 88ac0ef + 89df9d4 commit bdc9e0f
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 5 deletions.
17 changes: 17 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -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/
Original file line number Diff line number Diff line change
@@ -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"
}
2 changes: 1 addition & 1 deletion samples/generated-code/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}

Expand Down
2 changes: 1 addition & 1 deletion samples/groovy-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}

Expand Down
2 changes: 1 addition & 1 deletion samples/junit-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
Expand Down
2 changes: 1 addition & 1 deletion samples/kotlin-android/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -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 {
Expand Down

0 comments on commit bdc9e0f

Please sign in to comment.