From 61e06dcce84eba32b22fcdd15f8d18d0b66e507b Mon Sep 17 00:00:00 2001 From: Cesar Munoz Date: Sun, 28 Jul 2024 13:07:00 +0200 Subject: [PATCH 1/3] Setting version 2.10.0 --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 2a630567..0b871bb8 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,3 +1,3 @@ kotlin.code.style=official group=com.likethesalad.android -version=2.9.0 +version=2.10.0 From 543733bd5d2d11f0908379c4d5d3b41082b5b97d Mon Sep 17 00:00:00 2001 From: Cesar Munoz Date: Sun, 4 Aug 2024 06:44:00 +0200 Subject: [PATCH 2/3] Updating test --- .../assets/outputs/with_gradle_strings/main/values/resolved.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stem-plugin/src/test/assets/outputs/with_gradle_strings/main/values/resolved.xml b/stem-plugin/src/test/assets/outputs/with_gradle_strings/main/values/resolved.xml index 908e4949..8ffedef6 100644 --- a/stem-plugin/src/test/assets/outputs/with_gradle_strings/main/values/resolved.xml +++ b/stem-plugin/src/test/assets/outputs/with_gradle_strings/main/values/resolved.xml @@ -1,3 +1,3 @@ - Welcome to With Gradle strings, which id is: APP ID + Welcome to With Gradle strings, which id is: "APP ID" From 30e28c77a7b84e564887d983c51661fd70b46d49 Mon Sep 17 00:00:00 2001 From: Cesar Munoz Date: Sun, 4 Aug 2024 06:58:27 +0200 Subject: [PATCH 3/3] Bumping version to 2.10.1 --- CHANGELOG.md | 6 ++++++ README.md | 6 +++--- gradle.properties | 2 +- gradle/libs.versions.toml | 2 +- 4 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ce758c3..26a8f55a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ Change Log ========== +Version 2.10.1 *(04-08-2024)* +--- + +* Supporting strings with html tags that contain quotes. +* Keeping quotes as they are defined in the original strings. + Version 2.10.0 *(28-07-2024)* --- diff --git a/README.md b/README.md index 5a4490d4..48627c50 100644 --- a/README.md +++ b/README.md @@ -346,7 +346,7 @@ In your `App's build.gradle` file you have to add the following line after the a one: ```groovy -id "com.likethesalad.stem" version "2.10.0" +id "com.likethesalad.stem" version "2.10.1" ``` Example: @@ -355,7 +355,7 @@ Example: // App's build.gradle file plugins { id "com.android.application" - id "com.likethesalad.stem" version "2.10.0" + id "com.likethesalad.stem" version "2.10.1" } android { @@ -372,7 +372,7 @@ can do so by applying a "producer" version of Stem into them like so: // Android library's build.gradle file plugins { id "com.android.library" - id "com.likethesalad.stem-library" version "2.10.0" + id "com.likethesalad.stem-library" version "2.10.1" } android { diff --git a/gradle.properties b/gradle.properties index 0b871bb8..5f6cd6e5 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,3 +1,3 @@ kotlin.code.style=official group=com.likethesalad.android -version=2.10.0 +version=2.10.1 diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 701c2e90..ba088603 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -4,7 +4,7 @@ dagger = "2.51.1" android = "8.2.1" [libraries] -resourceLocator = "com.likethesalad.tools.resources:string-android-resource-locator:2.3.0" +resourceLocator = "com.likethesalad.tools.resources:string-android-resource-locator:2.3.1" androidCompatApi = { module = "com.likethesalad.tools:agp-compatibility-api", version.ref = "project-utilities" } dagger = { module = "com.google.dagger:dagger", version.ref = "dagger" } dagger-compiler = { module = "com.google.dagger:dagger-compiler", version.ref = "dagger" }