Skip to content

Commit adf0516

Browse files
authored
Merge pull request #40 from Yelp/prepare-release-1.1.1
Prepare Release v1.1.1
2 parents b982fdd + 60ffd57 commit adf0516

File tree

6 files changed

+12
-5
lines changed

6 files changed

+12
-5
lines changed

CHANGES.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
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.1.1 (2019-07-09)
6+
7+
* 🐛 Specify Java source and target compatibility version to Java8 [#39]
8+
9+
Thanks to @cortinico for the support with this release.
10+
511
## v1.1.0 (2019-06-05)
612

713
* 🎁 Update SharedCodegen to fallback to title usage if x-model is not present [#21]
@@ -29,3 +35,4 @@ Thanks to @cortinico, @MatthewTPage, @GuilhE, @macisamuele and @redwarp for the
2935
[#26]: https://github.com/Yelp/swagger-gradle-codegen/pull/26/
3036
[#30]: https://github.com/Yelp/swagger-gradle-codegen/pull/30/
3137
[#32]: https://github.com/Yelp/swagger-gradle-codegen/pull/32/
38+
[#39]: https://github.com/Yelp/swagger-gradle-codegen/pull/39/
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.1.0"
4+
const val PLUGIN_VERSION = "1.1.1"
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.4.1"
1212
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.31"
13-
classpath "com.yelp.codegen:plugin:1.1.0"
13+
classpath "com.yelp.codegen:plugin:1.1.1"
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.4.1"
1212
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.31"
13-
classpath "com.yelp.codegen:plugin:1.1.0"
13+
classpath "com.yelp.codegen:plugin:1.1.1"
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.4.1"
1212
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.31"
13-
classpath "com.yelp.codegen:plugin:1.1.0-SNAPSHOT"
13+
classpath "com.yelp.codegen:plugin:1.1.1"
1414
}
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.4.1"
33
kotlin("android") version "1.3.31"
4-
id("com.yelp.codegen.plugin") version "1.1.0"
4+
id("com.yelp.codegen.plugin") version "1.1.1"
55
}
66

77
android {

0 commit comments

Comments
 (0)