From d2448fce93027addf542f7b38bc8fc2ddda05682 Mon Sep 17 00:00:00 2001 From: Osip Fatkullin Date: Sat, 26 Jun 2021 11:52:35 +0300 Subject: [PATCH] resources-ktx: 1.3.0-0 --- buildSrc/src/main/kotlin/dependencies.kt | 2 +- resources-ktx/CHANGELOG.md | 10 ++++++++++ resources-ktx/README.md | 2 +- resources-ktx/build.gradle.kts | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/buildSrc/src/main/kotlin/dependencies.kt b/buildSrc/src/main/kotlin/dependencies.kt index 1281b97..158a62b 100644 --- a/buildSrc/src/main/kotlin/dependencies.kt +++ b/buildSrc/src/main/kotlin/dependencies.kt @@ -18,7 +18,7 @@ object androidx { const val annotation = "androidx.annotation:annotation:1.2.0" const val viewbinding = "androidx.databinding:viewbinding:4.1.2" - object appcompat : Group("androidx.appcompat", version = "1.2.0") { + object appcompat : Group("androidx.appcompat", version = "1.3.0") { val resources by this } diff --git a/resources-ktx/CHANGELOG.md b/resources-ktx/CHANGELOG.md index 40ff2f7..cd60919 100644 --- a/resources-ktx/CHANGELOG.md +++ b/resources-ktx/CHANGELOG.md @@ -1,5 +1,15 @@ ## Unreleased +## 1.3.0-0 (2021-06-27) + +### Dependencies + +- kotlin-stdlib-jdk8 1.4.32 -> kotlin-stdlib 1.5.20 +- androidx.appcompat 1.2.0 -> 1.3.0 +- androidx.annotation 1.1.0 -> 1.2.0 +- androidx.core 1.3.0 -> 1.5.0 +- androidx.fragment 1.3.0 -> 1.3.5 + ### Added - Wrapper `Text` to make it possible to work with plain `String` and `StringRes` in the same way. diff --git a/resources-ktx/README.md b/resources-ktx/README.md index 89daf8e..a5e7c93 100644 --- a/resources-ktx/README.md +++ b/resources-ktx/README.md @@ -24,7 +24,7 @@ repositories { } dependencies { - implementation("com.redmadrobot.extensions:resources-ktx:1.2.0-1") + implementation("com.redmadrobot.extensions:resources-ktx:1.3.0-0") } ``` diff --git a/resources-ktx/build.gradle.kts b/resources-ktx/build.gradle.kts index 4b9fd36..4d68462 100644 --- a/resources-ktx/build.gradle.kts +++ b/resources-ktx/build.gradle.kts @@ -6,7 +6,7 @@ plugins { id("redmadrobot.publish") } -version = "1.2.0-1" +version = "1.3.0-0" description = "A set of Kotlin extensions for accessing resources" dependencies {