Skip to content

Commit

Permalink
Merge pull request #116 from LikeTheSalad/release/2.11.0
Browse files Browse the repository at this point in the history
Release/2.11.0
  • Loading branch information
LikeTheSalad authored Sep 15, 2024
2 parents 032c997 + e35f29e commit dd51e83
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
Change Log
==========
Version 2.11.0 *(15-09-2024)*
---

* Allowing more "values" folder names.

Version 2.10.1 *(04-08-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.1"
id "com.likethesalad.stem" version "2.11.0"
```

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.1"
id "com.likethesalad.stem" version "2.11.0"
}
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.1"
id "com.likethesalad.stem-library" version "2.11.0"
}
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.10.1
version=2.11.0
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.52"
android = "8.2.1"

[libraries]
resourceLocator = "com.likethesalad.tools.resources:string-android-resource-locator:2.3.1"
resourceLocator = "com.likethesalad.tools.resources:string-android-resource-locator:2.4.0"
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
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="welcome_message">Welcome to ${app_name} v30</string>
</resources>
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Not a language</string>
</resources>
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<resources>
<string name="welcome_message">Welcome to Not a language v30</string>
</resources>

0 comments on commit dd51e83

Please sign in to comment.