From 729a789985cf16dc44a633e577e797d698f14ece Mon Sep 17 00:00:00 2001 From: Nicola Corti Date: Mon, 17 Feb 2020 19:50:09 +0100 Subject: [PATCH] Prepare Release v1.4.0 --- CHANGES.md | 35 +++++++++++++++++++ build.gradle.kts | 2 +- .../yelp/codegen/gradle/PublishingVersions.kt | 2 +- 3 files changed, 37 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index d22f7aa0..c4950c8b 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -2,6 +2,22 @@ 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.4.0 (2020-02-18) + +* ๐ŸŽ Moshi-Codegen Support [#82] [#88] +* ๐ŸŽ Bump io.swagger:swagger-codegen to 2.4.12 [#91] +* ๐ŸŽ Updated Mustache style and indent [#90] +* ๐Ÿ› Fixed bug with Multipart file support [#101] +* ๐Ÿ› Removed `kotlin-dsl` and fixed support for Gradle 5.x [#112] [#111] +* ๐Ÿงช Multiple fixes in our testing infra [#95] [#93] [#87] [#85] [#84] +* โš™๏ธ Moved all the build targets from Makefile to Gradle [#105] +* โš™๏ธ Moved the project to be a composite build [#97] +* โš™๏ธ Multiple fixes to our pre-commit hook infrastructure [#100] [#86] [#94] [#93] [#92] + +โœ…: `swagger-gradle-codegen:plugin:1.4.0` is supported on Gradle 5.4.1+ + +Thanks to @cortinico @martinbonnin @macisamuele for the support with this release + ## v1.3.0 (2020-01-21) * ๐ŸŽ Kotlin Coroutines Support [#29] @@ -80,3 +96,22 @@ Thanks to @cortinico, @MatthewTPage, @GuilhE, @macisamuele and @redwarp for the [#78]: https://github.com/Yelp/swagger-gradle-codegen/pull/78/ [#79]: https://github.com/Yelp/swagger-gradle-codegen/pull/79/ [#80]: https://github.com/Yelp/swagger-gradle-codegen/pull/80/ +[#82]: https://github.com/Yelp/swagger-gradle-codegen/pull/82/ +[#84]: https://github.com/Yelp/swagger-gradle-codegen/pull/84/ +[#85]: https://github.com/Yelp/swagger-gradle-codegen/pull/85/ +[#86]: https://github.com/Yelp/swagger-gradle-codegen/pull/86/ +[#87]: https://github.com/Yelp/swagger-gradle-codegen/pull/87/ +[#88]: https://github.com/Yelp/swagger-gradle-codegen/pull/88/ +[#90]: https://github.com/Yelp/swagger-gradle-codegen/pull/90/ +[#91]: https://github.com/Yelp/swagger-gradle-codegen/pull/91/ +[#92]: https://github.com/Yelp/swagger-gradle-codegen/pull/92/ +[#93]: https://github.com/Yelp/swagger-gradle-codegen/pull/93/ +[#93]: https://github.com/Yelp/swagger-gradle-codegen/pull/93/ +[#94]: https://github.com/Yelp/swagger-gradle-codegen/pull/94/ +[#95]: https://github.com/Yelp/swagger-gradle-codegen/pull/95/ +[#97]: https://github.com/Yelp/swagger-gradle-codegen/pull/97/ +[#100]: https://github.com/Yelp/swagger-gradle-codegen/pull/100/ +[#101]: https://github.com/Yelp/swagger-gradle-codegen/pull/101/ +[#105]: https://github.com/Yelp/swagger-gradle-codegen/pull/105/ +[#111]: https://github.com/Yelp/swagger-gradle-codegen/pull/111/ +[#112]: https://github.com/Yelp/swagger-gradle-codegen/pull/112/ diff --git a/build.gradle.kts b/build.gradle.kts index b485eb35..6f6b20a2 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -54,7 +54,7 @@ val preMerge = tasks.register("preMerge") { plugins { id("com.android.library").version("3.5.3").apply(false) - id("com.yelp.codegen.plugin").version("1.3.0").apply(false) + id("com.yelp.codegen.plugin").version("1.4.0").apply(false) id("io.gitlab.arturbosch.detekt").version("1.4.0").apply(false) kotlin("android").version("1.3.61").apply(false) } diff --git a/gradle-plugin/buildSrc/src/main/java/com/yelp/codegen/gradle/PublishingVersions.kt b/gradle-plugin/buildSrc/src/main/java/com/yelp/codegen/gradle/PublishingVersions.kt index 5b5fee92..936c62f9 100644 --- a/gradle-plugin/buildSrc/src/main/java/com/yelp/codegen/gradle/PublishingVersions.kt +++ b/gradle-plugin/buildSrc/src/main/java/com/yelp/codegen/gradle/PublishingVersions.kt @@ -1,5 +1,5 @@ object PublishingVersions { - const val PLUGIN_VERSION = "1.3.0" + const val PLUGIN_VERSION = "1.4.0" const val PLUGIN_GROUP = "com.yelp.codegen" @Suppress("UNUSED") const val PLUGIN_ARTIFACT = "plugin"