Skip to content

Commit dd51e83

Browse files
authored
Merge pull request #116 from LikeTheSalad/release/2.11.0
Release/2.11.0
2 parents 032c997 + e35f29e commit dd51e83

File tree

7 files changed

+21
-5
lines changed

7 files changed

+21
-5
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
Change Log
22
==========
3+
Version 2.11.0 *(15-09-2024)*
4+
---
5+
6+
* Allowing more "values" folder names.
7+
38
Version 2.10.1 *(04-08-2024)*
49
---
510

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ In your `App's build.gradle` file you have to add the following line after the a
346346
one:
347347

348348
```groovy
349-
id "com.likethesalad.stem" version "2.10.1"
349+
id "com.likethesalad.stem" version "2.11.0"
350350
```
351351

352352
Example:
@@ -355,7 +355,7 @@ Example:
355355
// App's build.gradle file
356356
plugins {
357357
id "com.android.application"
358-
id "com.likethesalad.stem" version "2.10.1"
358+
id "com.likethesalad.stem" version "2.11.0"
359359
}
360360
361361
android {
@@ -372,7 +372,7 @@ can do so by applying a "producer" version of Stem into them like so:
372372
// Android library's build.gradle file
373373
plugins {
374374
id "com.android.library"
375-
id "com.likethesalad.stem-library" version "2.10.1"
375+
id "com.likethesalad.stem-library" version "2.11.0"
376376
}
377377
378378
android {

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
kotlin.code.style=official
22
group=com.likethesalad.android
3-
version=2.10.1
3+
version=2.11.0

gradle/libs.versions.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dagger = "2.52"
44
android = "8.2.1"
55

66
[libraries]
7-
resourceLocator = "com.likethesalad.tools.resources:string-android-resource-locator:2.3.1"
7+
resourceLocator = "com.likethesalad.tools.resources:string-android-resource-locator:2.4.0"
88
androidCompatApi = { module = "com.likethesalad.tools:agp-compatibility-api", version.ref = "project-utilities" }
99
dagger = { module = "com.google.dagger:dagger", version.ref = "dagger" }
1010
dagger-compiler = { module = "com.google.dagger:dagger-compiler", version.ref = "dagger" }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<resources>
3+
<string name="welcome_message">Welcome to ${app_name} v30</string>
4+
</resources>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<resources>
3+
<string name="app_name">Not a language</string>
4+
</resources>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<resources>
2+
<string name="welcome_message">Welcome to Not a language v30</string>
3+
</resources>

0 commit comments

Comments
 (0)