Skip to content

Commit 3e24abe

Browse files
authored
Prepare Release v1.3.0 (#81)
Prepare Release v1.3.0
2 parents 1f522ec + b78a261 commit 3e24abe

File tree

7 files changed

+31
-6
lines changed

7 files changed

+31
-6
lines changed

CHANGES.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
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.3.0 (2020-01-21)
6+
7+
* 🎁 Kotlin Coroutines Support [#29]
8+
* 🐛 Allow dot in parameter names for operations [#77]
9+
* 🐛 Fix Nullability warning in JsonAdapters [#78]
10+
* 🐛 Fix missing inner enum import on operations [#79]
11+
* 🐛 Fix Gradle Portal URL in settings.gradle.kts breaking Gradle syncs [#59]
12+
* 🐛 Issue 55 failing windows tests [#56]
13+
* ⚙️ Update multiple dependencies [#64]
14+
* ⚙️ Update several dependencies [#80]
15+
* ⚙️ Gradle to 5.6.2 [#67]
16+
* ⚙️ Add JaCoCo for CodeCov [#66]
17+
18+
Thanks to @cortinico @doug-precocity @redwarp @macisamuele @filipemp for the support with this release
19+
520
## v1.2.0 (2019-07-31)
621

722
* 🎁 Remove leading slash if Swagger Spec are specifying a basePath [#50]
@@ -44,6 +59,7 @@ Thanks to @cortinico, @MatthewTPage, @GuilhE, @macisamuele and @redwarp for the
4459
[#22]: https://github.com/Yelp/swagger-gradle-codegen/pull/22/
4560
[#23]: https://github.com/Yelp/swagger-gradle-codegen/pull/23/
4661
[#26]: https://github.com/Yelp/swagger-gradle-codegen/pull/26/
62+
[#29]: https://github.com/Yelp/swagger-gradle-codegen/pull/29/
4763
[#30]: https://github.com/Yelp/swagger-gradle-codegen/pull/30/
4864
[#32]: https://github.com/Yelp/swagger-gradle-codegen/pull/32/
4965
[#39]: https://github.com/Yelp/swagger-gradle-codegen/pull/39/
@@ -53,3 +69,12 @@ Thanks to @cortinico, @MatthewTPage, @GuilhE, @macisamuele and @redwarp for the
5369
[#48]: https://github.com/Yelp/swagger-gradle-codegen/pull/48/
5470
[#50]: https://github.com/Yelp/swagger-gradle-codegen/pull/50/
5571
[#52]: https://github.com/Yelp/swagger-gradle-codegen/pull/52/
72+
[#56]: https://github.com/Yelp/swagger-gradle-codegen/pull/56/
73+
[#59]: https://github.com/Yelp/swagger-gradle-codegen/pull/59/
74+
[#64]: https://github.com/Yelp/swagger-gradle-codegen/pull/64/
75+
[#66]: https://github.com/Yelp/swagger-gradle-codegen/pull/66/
76+
[#67]: https://github.com/Yelp/swagger-gradle-codegen/pull/67/
77+
[#77]: https://github.com/Yelp/swagger-gradle-codegen/pull/77/
78+
[#78]: https://github.com/Yelp/swagger-gradle-codegen/pull/78/
79+
[#79]: https://github.com/Yelp/swagger-gradle-codegen/pull/79/
80+
[#80]: https://github.com/Yelp/swagger-gradle-codegen/pull/80/
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@file:Suppress("Unused")
22

33
object PublishingVersions {
4-
const val PLUGIN_VERSION = "1.2.0"
4+
const val PLUGIN_VERSION = "1.3.0"
55
const val PLUGIN_GROUP = "com.yelp.codegen"
66
const val PLUGIN_ARTIFACT = "plugin"
77
}

samples/generated-code/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ buildscript {
1010
dependencies {
1111
classpath "com.android.tools.build:gradle:3.5.3"
1212
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.61"
13-
classpath "com.yelp.codegen:plugin:1.2.0"
13+
classpath "com.yelp.codegen:plugin:1.3.0"
1414
}
1515
}
1616

samples/groovy-android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ buildscript {
1010
dependencies {
1111
classpath "com.android.tools.build:gradle:3.5.3"
1212
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.61"
13-
classpath "com.yelp.codegen:plugin:1.2.0"
13+
classpath "com.yelp.codegen:plugin:1.3.0"
1414
}
1515
}
1616

samples/junit-tests/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ buildscript {
1010
dependencies {
1111
classpath "com.android.tools.build:gradle:3.5.3"
1212
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.61"
13-
classpath "com.yelp.codegen:plugin:1.2.0"
13+
classpath "com.yelp.codegen:plugin:1.3.0"
1414
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.4.0"
1515
}
1616
}

samples/kotlin-android/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id("com.android.library") version "3.5.3"
33
kotlin("android") version "1.3.61"
4-
id("com.yelp.codegen.plugin") version "1.2.0"
4+
id("com.yelp.codegen.plugin") version "1.3.0"
55
}
66

77
android {

samples/kotlin-coroutines/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ buildscript {
1010
dependencies {
1111
classpath "com.android.tools.build:gradle:3.5.3"
1212
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.61"
13-
classpath "com.yelp.codegen:plugin:1.2.0"
13+
classpath "com.yelp.codegen:plugin:1.3.0"
1414
}
1515
}
1616

0 commit comments

Comments
 (0)