Skip to content

Commit

Permalink
Bump version to 0.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
burnoo committed Aug 9, 2022
1 parent 07af0db commit ef9006c
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.4'
implementation 'dev.burnoo:compose-remember-preference:0.3.5'
}
```
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.4'
lib_version = '0.3.5'
compose_version = '1.2.0'
compose_compiler_version = '1.3.0-rc02'
datastore_version = '1.0.0'
Expand Down

0 comments on commit ef9006c

Please sign in to comment.