Skip to content

Commit 0c0e1ca

Browse files
committed
version: 0.19.1
1 parent 2cf2eeb commit 0c0e1ca

File tree

5 files changed

+15
-10
lines changed

5 files changed

+15
-10
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## [Unreleased]
22

3+
- *No changes*
4+
5+
## [0.19.1] (2024-07-31)
6+
37
### Fixes
48

59
- Fixed package of the extension `SigningConfig.fromProperties`. \
@@ -724,6 +728,7 @@ Pull request: #35
724728
- Added CHANGELOG.md :)
725729

726730
[unreleased]: https://github.com/RedMadRobot/gradle-infrastructure/compare/main..develop
731+
[0.19.1]: https://github.com/RedMadRobot/gradle-infrastructure/compare/v0.19..v0.19.1
727732
[0.19]: https://github.com/RedMadRobot/gradle-infrastructure/compare/v0.18.1..v0.19
728733
[0.18.1]: https://github.com/RedMadRobot/gradle-infrastructure/compare/v0.18..v0.18.1
729734
[0.18]: https://github.com/RedMadRobot/gradle-infrastructure/compare/v0.17..v0.18

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,15 @@ pluginManagement {
5353
}
5454
```
5555

56-
Then you can apply any of plugins where you need:
56+
Then you can apply any of the plugins where you need:
5757

5858
```kotlin
5959
plugins {
60-
id("com.redmadrobot.kotlin-library") version "0.19"
61-
id("com.redmadrobot.publish") version "0.19"
62-
id("com.redmadrobot.detekt") version "0.19"
63-
id("com.redmadrobot.application") version "0.19"
64-
id("com.redmadrobot.android-library") version "0.19"
60+
id("com.redmadrobot.kotlin-library") version "0.19.1"
61+
id("com.redmadrobot.publish") version "0.19.1"
62+
id("com.redmadrobot.detekt") version "0.19.1"
63+
id("com.redmadrobot.application") version "0.19.1"
64+
id("com.redmadrobot.android-library") version "0.19.1"
6565
}
6666
```
6767

@@ -496,7 +496,7 @@ redmadrobot {
496496

497497
> [!WARNING]
498498
> This feature is deprecated and is disabled by default since v0.19
499-
> Currently you can enable this behavior, though this option may be deleted at some point.
499+
> Currently, you can enable this behavior, though this option may be deleted at some point.
500500
501501
Infrastructure plugins can automatically add required repositories:
502502

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group=com.redmadrobot.build
2-
version=0.19.1-SNAPSHOT
2+
version=0.19.1
33

44
# Project-wide Gradle settings.
55

samples/android-application-multi/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
// Versions of AGP and KGP are specified in buildSrc module
3-
id("com.redmadrobot.android-config") version "0.19.1-SNAPSHOT"
3+
id("com.redmadrobot.android-config") version "0.19.1"
44
}
55

66
// Common configurations for all modules

samples/android-application/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
id("com.android.application") version "8.5.1" apply false
44
kotlin("android") version "2.0.0" apply false
55

6-
id("com.redmadrobot.android-config") version "0.19.1-SNAPSHOT"
6+
id("com.redmadrobot.android-config") version "0.19.1"
77
}
88

99
// Common configurations for all modules

0 commit comments

Comments
 (0)