Skip to content

Commit

Permalink
Merge pull request #104 from LikeTheSalad/release/2.10.0
Browse files Browse the repository at this point in the history
Release/2.10.1
  • Loading branch information
LikeTheSalad authored Aug 4, 2024
2 parents 8f53883 + 30e28c7 commit dd40af9
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)*
---

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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 {
Expand All @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
kotlin.code.style=official
group=com.likethesalad.android
version=2.9.0
version=2.10.1
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<resources>
<string name="welcome_message">Welcome to With Gradle strings, which id is: APP ID</string>
<string name="welcome_message">Welcome to With Gradle strings, which id is: "APP ID"</string>
</resources>

0 comments on commit dd40af9

Please sign in to comment.