diff --git a/CHANGELOG.md b/CHANGELOG.md index cc55931..29a7525 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## [Unreleased] +- *No changes* + +## [0.19.1] (2024-07-31) + ### Fixes - Fixed package of the extension `SigningConfig.fromProperties`. \ @@ -724,6 +728,7 @@ Pull request: #35 - Added CHANGELOG.md :) [unreleased]: https://github.com/RedMadRobot/gradle-infrastructure/compare/main..develop +[0.19.1]: https://github.com/RedMadRobot/gradle-infrastructure/compare/v0.19..v0.19.1 [0.19]: https://github.com/RedMadRobot/gradle-infrastructure/compare/v0.18.1..v0.19 [0.18.1]: https://github.com/RedMadRobot/gradle-infrastructure/compare/v0.18..v0.18.1 [0.18]: https://github.com/RedMadRobot/gradle-infrastructure/compare/v0.17..v0.18 diff --git a/README.md b/README.md index 4c84905..786fc6e 100644 --- a/README.md +++ b/README.md @@ -53,15 +53,15 @@ pluginManagement { } ``` -Then you can apply any of plugins where you need: +Then you can apply any of the plugins where you need: ```kotlin plugins { - id("com.redmadrobot.kotlin-library") version "0.19" - id("com.redmadrobot.publish") version "0.19" - id("com.redmadrobot.detekt") version "0.19" - id("com.redmadrobot.application") version "0.19" - id("com.redmadrobot.android-library") version "0.19" + id("com.redmadrobot.kotlin-library") version "0.19.1" + id("com.redmadrobot.publish") version "0.19.1" + id("com.redmadrobot.detekt") version "0.19.1" + id("com.redmadrobot.application") version "0.19.1" + id("com.redmadrobot.android-library") version "0.19.1" } ``` @@ -496,7 +496,7 @@ redmadrobot { > [!WARNING] > This feature is deprecated and is disabled by default since v0.19 -> Currently you can enable this behavior, though this option may be deleted at some point. +> Currently, you can enable this behavior, though this option may be deleted at some point. Infrastructure plugins can automatically add required repositories: diff --git a/gradle.properties b/gradle.properties index 2cc9b1f..f41b7b3 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ group=com.redmadrobot.build -version=0.19.1-SNAPSHOT +version=0.19.1 # Project-wide Gradle settings. diff --git a/samples/android-application-multi/build.gradle.kts b/samples/android-application-multi/build.gradle.kts index 41e581c..51f2bb6 100644 --- a/samples/android-application-multi/build.gradle.kts +++ b/samples/android-application-multi/build.gradle.kts @@ -1,6 +1,6 @@ plugins { // Versions of AGP and KGP are specified in buildSrc module - id("com.redmadrobot.android-config") version "0.19.1-SNAPSHOT" + id("com.redmadrobot.android-config") version "0.19.1" } // Common configurations for all modules diff --git a/samples/android-application/build.gradle.kts b/samples/android-application/build.gradle.kts index b2878b2..0855850 100644 --- a/samples/android-application/build.gradle.kts +++ b/samples/android-application/build.gradle.kts @@ -3,7 +3,7 @@ plugins { id("com.android.application") version "8.5.1" apply false kotlin("android") version "2.0.0" apply false - id("com.redmadrobot.android-config") version "0.19.1-SNAPSHOT" + id("com.redmadrobot.android-config") version "0.19.1" } // Common configurations for all modules