Skip to content

Commit 15d28a4

Browse files
authored
Merge pull request #118 from Yelp/prepare-1.4.0
Prepare Release v1.4.0
2 parents 8c56011 + 729a789 commit 15d28a4

File tree

3 files changed

+37
-2
lines changed

3 files changed

+37
-2
lines changed

CHANGES.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
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.4.0 (2020-02-18)
6+
7+
* 🎁 Moshi-Codegen Support [#82] [#88]
8+
* 🎁 Bump io.swagger:swagger-codegen to 2.4.12 [#91]
9+
* 🎁 Updated Mustache style and indent [#90]
10+
* 🐛 Fixed bug with Multipart file support [#101]
11+
* 🐛 Removed `kotlin-dsl` and fixed support for Gradle 5.x [#112] [#111]
12+
* 🧪 Multiple fixes in our testing infra [#95] [#93] [#87] [#85] [#84]
13+
* ⚙️ Moved all the build targets from Makefile to Gradle [#105]
14+
* ⚙️ Moved the project to be a composite build [#97]
15+
* ⚙️ Multiple fixes to our pre-commit hook infrastructure [#100] [#86] [#94] [#93] [#92]
16+
17+
✅: `swagger-gradle-codegen:plugin:1.4.0` is supported on Gradle 5.4.1+
18+
19+
Thanks to @cortinico @martinbonnin @macisamuele for the support with this release
20+
521
## v1.3.0 (2020-01-21)
622

723
* 🎁 Kotlin Coroutines Support [#29]
@@ -80,3 +96,22 @@ Thanks to @cortinico, @MatthewTPage, @GuilhE, @macisamuele and @redwarp for the
8096
[#78]: https://github.com/Yelp/swagger-gradle-codegen/pull/78/
8197
[#79]: https://github.com/Yelp/swagger-gradle-codegen/pull/79/
8298
[#80]: https://github.com/Yelp/swagger-gradle-codegen/pull/80/
99+
[#82]: https://github.com/Yelp/swagger-gradle-codegen/pull/82/
100+
[#84]: https://github.com/Yelp/swagger-gradle-codegen/pull/84/
101+
[#85]: https://github.com/Yelp/swagger-gradle-codegen/pull/85/
102+
[#86]: https://github.com/Yelp/swagger-gradle-codegen/pull/86/
103+
[#87]: https://github.com/Yelp/swagger-gradle-codegen/pull/87/
104+
[#88]: https://github.com/Yelp/swagger-gradle-codegen/pull/88/
105+
[#90]: https://github.com/Yelp/swagger-gradle-codegen/pull/90/
106+
[#91]: https://github.com/Yelp/swagger-gradle-codegen/pull/91/
107+
[#92]: https://github.com/Yelp/swagger-gradle-codegen/pull/92/
108+
[#93]: https://github.com/Yelp/swagger-gradle-codegen/pull/93/
109+
[#93]: https://github.com/Yelp/swagger-gradle-codegen/pull/93/
110+
[#94]: https://github.com/Yelp/swagger-gradle-codegen/pull/94/
111+
[#95]: https://github.com/Yelp/swagger-gradle-codegen/pull/95/
112+
[#97]: https://github.com/Yelp/swagger-gradle-codegen/pull/97/
113+
[#100]: https://github.com/Yelp/swagger-gradle-codegen/pull/100/
114+
[#101]: https://github.com/Yelp/swagger-gradle-codegen/pull/101/
115+
[#105]: https://github.com/Yelp/swagger-gradle-codegen/pull/105/
116+
[#111]: https://github.com/Yelp/swagger-gradle-codegen/pull/111/
117+
[#112]: https://github.com/Yelp/swagger-gradle-codegen/pull/112/

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ val preMerge = tasks.register("preMerge") {
5454

5555
plugins {
5656
id("com.android.library").version("3.5.3").apply(false)
57-
id("com.yelp.codegen.plugin").version("1.3.0").apply(false)
57+
id("com.yelp.codegen.plugin").version("1.4.0").apply(false)
5858
id("io.gitlab.arturbosch.detekt").version("1.4.0").apply(false)
5959
kotlin("android").version("1.3.61").apply(false)
6060
}

gradle-plugin/buildSrc/src/main/java/com/yelp/codegen/gradle/PublishingVersions.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
object PublishingVersions {
2-
const val PLUGIN_VERSION = "1.3.0"
2+
const val PLUGIN_VERSION = "1.4.0"
33
const val PLUGIN_GROUP = "com.yelp.codegen"
44
@Suppress("UNUSED")
55
const val PLUGIN_ARTIFACT = "plugin"

0 commit comments

Comments
 (0)