From 5ff9de963565f95416a6580e4cfc1235653430b3 Mon Sep 17 00:00:00 2001 From: Osip Fatkullin Date: Fri, 17 Jun 2022 11:27:36 +0300 Subject: [PATCH] version: 0.16.2 --- CHANGELOG.md | 3 +++ README.md | 10 +++++----- build.gradle.kts | 2 +- samples/android-application-multi/build.gradle.kts | 2 +- samples/android-application/build.gradle.kts | 2 +- 5 files changed, 11 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c3572c..a56e980 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ ## [Unreleased] +## [0.16.2] (2022-06-17) + ### Fixed - Defaults from parent project are not applied to project (#107) @@ -512,6 +514,7 @@ Pull request: #35 - Added CHANGELOG.md :) [unreleased]: https://github.com/RedMadRobot/gradle-infrastructure/compare/main..develop +[0.16.2]: https://github.com/RedMadRobot/gradle-infrastructure/compare/v0.16.1..v0.16.2 [0.16.1]: https://github.com/RedMadRobot/gradle-infrastructure/compare/v0.16..v0.16.1 [0.16]: https://github.com/RedMadRobot/gradle-infrastructure/compare/v0.15..v0.16 [0.15]: https://github.com/RedMadRobot/gradle-infrastructure/compare/v0.14..v0.15 diff --git a/README.md b/README.md index a8c798b..e00bfb4 100644 --- a/README.md +++ b/README.md @@ -53,11 +53,11 @@ Then you can apply any of plugins where you need: ```kotlin plugins { - id("com.redmadrobot.kotlin-library") version "0.16.1" - id("com.redmadrobot.publish") version "0.16.1" - id("com.redmadrobot.detekt") version "0.16.1" - id("com.redmadrobot.application") version "0.16.1" - id("com.redmadrobot.android-library") version "0.16.1" + id("com.redmadrobot.kotlin-library") version "0.16.2" + id("com.redmadrobot.publish") version "0.16.2" + id("com.redmadrobot.detekt") version "0.16.2" + id("com.redmadrobot.application") version "0.16.2" + id("com.redmadrobot.android-library") version "0.16.2" } ``` diff --git a/build.gradle.kts b/build.gradle.kts index fecf847..55571dd 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -36,5 +36,5 @@ subprojects { } group = "com.redmadrobot.build" - version = "0.17-SNAPSHOT" + version = "0.16.2" } diff --git a/samples/android-application-multi/build.gradle.kts b/samples/android-application-multi/build.gradle.kts index 38173e8..7fa4166 100644 --- a/samples/android-application-multi/build.gradle.kts +++ b/samples/android-application-multi/build.gradle.kts @@ -1,5 +1,5 @@ plugins { - id("com.redmadrobot.android-config") version "0.17-SNAPSHOT" + id("com.redmadrobot.android-config") version "0.16.2" } // Common configurations for all modules diff --git a/samples/android-application/build.gradle.kts b/samples/android-application/build.gradle.kts index 95a0f24..84f8f8a 100644 --- a/samples/android-application/build.gradle.kts +++ b/samples/android-application/build.gradle.kts @@ -1,3 +1,3 @@ plugins { - id("com.redmadrobot.android-config") version "0.17-SNAPSHOT" + id("com.redmadrobot.android-config") version "0.16.2" }