Skip to content

Commit

Permalink
version: 0.18.1
Browse files Browse the repository at this point in the history
  • Loading branch information
osipxd committed Apr 18, 2023
1 parent 08ef183 commit fb93711
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## [Unreleased]

## [0.18.1] (2023-04-18)

- Fix compatibility with Gradle lower than 8.0 (#127)
- Update Gradle to 8.1

Expand Down Expand Up @@ -601,6 +603,7 @@ Pull request: #35
- Added CHANGELOG.md :)

[unreleased]: https://github.com/RedMadRobot/gradle-infrastructure/compare/main..develop
[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
[0.16.2]: https://github.com/RedMadRobot/gradle-infrastructure/compare/v0.16.1..v0.16.2
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ Then you can apply any of plugins where you need:

```kotlin
plugins {
id("com.redmadrobot.kotlin-library") version "0.18"
id("com.redmadrobot.publish") version "0.18"
id("com.redmadrobot.detekt") version "0.18"
id("com.redmadrobot.application") version "0.18"
id("com.redmadrobot.android-library") version "0.18"
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"
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ subprojects {
}

group = "com.redmadrobot.build"
version = "0.19-SNAPSHOT"
version = "0.18.1"
}
2 changes: 1 addition & 1 deletion samples/android-application-multi/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
id("com.android.application") version "7.4.2" apply false
kotlin("android") version "1.8.10" apply false

id("com.redmadrobot.android-config") version "0.19-SNAPSHOT"
id("com.redmadrobot.android-config") version "0.18.1"
}

// Common configurations for all modules
Expand Down
2 changes: 1 addition & 1 deletion samples/android-application/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ plugins {
id("com.android.application") version "7.4.2" apply false
kotlin("android") version "1.8.10" apply false

id("com.redmadrobot.android-config") version "0.19-SNAPSHOT"
id("com.redmadrobot.android-config") version "0.18.1"
}

0 comments on commit fb93711

Please sign in to comment.