Skip to content

Commit

Permalink
Bump lib version to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
burnoo committed Jun 19, 2024
1 parent 94af742 commit f8f384b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Jetpack Compose library for remembering state persistently, based on DataStore p
Library is distributed through Maven Central. To use it you need to add following dependancy to your module `build.gradle`:
```groovy
dependencies {
implementation 'dev.burnoo:compose-remember-preference:1.0.2'
implementation 'dev.burnoo:compose-remember-preference:1.1.0'
}
```
To store state in `@Composable` when app is running you would use `remember { mutableStateOf(x) }`. The library comes with the same functionality, but supports data persistence, saving and restoring data using DataStore preferences. It has it owns functions that returns `MutableState`.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
buildscript {
ext {
lib_version = '1.0.2'
lib_version = '1.1.0'
compose_version = '1.6.8'
compose_compiler_version = '1.5.14'
datastore_version = '1.1.1'
Expand Down

0 comments on commit f8f384b

Please sign in to comment.