Skip to content

Commit

Permalink
chore: update version in README.md & prepare for next development i…
Browse files Browse the repository at this point in the history
…teration
  • Loading branch information
meowool-bot authored and chachako committed Aug 4, 2024
1 parent 97203f8 commit 28cd80a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Depending on your project setup, follow the appropriate steps to include MMKV-KT
>**build.gradle.kts**
```kotlin
dependencies {
val mmkvKtxVersion = "0.1.4"
val mmkvKtxVersion = "0.1.7"
implementation("com.meowool:mmkv:$mmkvKtxVersion")
ksp("com.meowool:mmkv-compiler:$mmkvKtxVersion")
}
Expand All @@ -74,7 +74,7 @@ dependencies {
> **libs.versions.toml**
```toml
[versions]
mmkv-ktx = "0.1.4"
mmkv-ktx = "0.1.7"

[librarys]
mmkv-ktx = { module = "com.meowool:mmkv", version.ref = "mmkv-ktx" }
Expand Down Expand Up @@ -158,7 +158,7 @@ class Converters {
putLong(mostSignificantBits)
putLong(leastSignificantBits)
}.array()

fun ByteArray.toUUID(): UUID = with(ByteBuffer.wrap(this)) {
UUID(long, long)
}
Expand Down Expand Up @@ -256,7 +256,7 @@ class SettingsViewModel(
val followingSystemTheme = userSettings.mapStateFlow {
it.themeAppearance == ThemeAppearance.Auto
}

fun saveToken(value: String) {
checkToken(value) { ... }
userSettings.update {
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.7
0.1.8

0 comments on commit 28cd80a

Please sign in to comment.