Skip to content

Commit

Permalink
Bump app version to 0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
burnoo committed Oct 3, 2021
1 parent 4a8da33 commit 502dd62
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:0.3.3'
implementation 'dev.burnoo:compose-remember-preference:0.3.4'
}
```
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 = '0.3.3'
lib_version = '0.3.4'
compose_version = '1.0.3'
datastore_version = '1.0.0'
}
Expand Down

0 comments on commit 502dd62

Please sign in to comment.