diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a48858..c68e432 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## [Unreleased] +- *No changes* + +## [0.19] (2024-07-26) + > [!NOTE] > This release removes many implicit features that couldn't be configured from outside. > It is also a part of a process of removing the features that could be easily implemented via [pre-compiled script plugins](https://docs.gradle.org/current/userguide/implementing_gradle_plugins_precompiled.html) (for example, SDK versions and tests configuration). @@ -717,6 +721,7 @@ Pull request: #35 - Added CHANGELOG.md :) [unreleased]: https://github.com/RedMadRobot/gradle-infrastructure/compare/main..develop +[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 [0.17]: https://github.com/RedMadRobot/gradle-infrastructure/compare/v0.16.2..v0.17 diff --git a/README.md b/README.md index bb7a770..4c84905 100644 --- a/README.md +++ b/README.md @@ -57,11 +57,11 @@ Then you can apply any of plugins where you need: ```kotlin plugins { - id("com.redmadrobot.kotlin-library") version "0.18.1" - id("com.redmadrobot.publish") version "0.18.1" - id("com.redmadrobot.detekt") version "0.18.1" - id("com.redmadrobot.application") version "0.18.1" - id("com.redmadrobot.android-library") version "0.18.1" + 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" } ``` diff --git a/gradle.properties b/gradle.properties index 65773e3..0941785 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ group=com.redmadrobot.build -version=0.19-SNAPSHOT +version=0.19 # Project-wide Gradle settings. diff --git a/samples/android-application-multi/build.gradle.kts b/samples/android-application-multi/build.gradle.kts index c665efb..5a0ef82 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-SNAPSHOT" + id("com.redmadrobot.android-config") version "0.19" } // Common configurations for all modules diff --git a/samples/android-application/build.gradle.kts b/samples/android-application/build.gradle.kts index 25f2a2d..623aa73 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-SNAPSHOT" + id("com.redmadrobot.android-config") version "0.19" } // Common configurations for all modules