Skip to content

Commit

Permalink
Merge pull request #118 from Yelp/prepare-1.4.0
Browse files Browse the repository at this point in the history
Prepare Release v1.4.0
  • Loading branch information
cortinico committed Feb 18, 2020
2 parents 8c56011 + 729a789 commit 15d28a4
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 2 deletions.
35 changes: 35 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -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/
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 15d28a4

Please sign in to comment.