File tree 2 files changed +4
-10
lines changed 2 files changed +4
-10
lines changed Original file line number Diff line number Diff line change 32
32
33
33
### Including Store In Your Project
34
34
35
- > ** Note**
36
- >
37
- > ** [ AtomicFU] ( https://github.com/Kotlin/kotlinx-atomicfu ) is required ([ #503 ] ( https://github.com/MobileNativeFoundation/Store/issues/503 ) )**
38
-
39
35
#### Android
40
36
``` kotlin
41
- implementation " org.mobilenativefoundation.store:store5:5.0.0"
42
- implementation " org.jetbrains.kotlinx:atomicfu:0.18.5"
37
+ implementation " org.mobilenativefoundation.store:store5:5.1.0-alpha01"
43
38
```
44
39
45
40
#### Multiplatform (Common, JVM, Native, JS)
46
41
47
42
``` kotlin
48
43
commonMain {
49
44
dependencies {
50
- implementation(" org.mobilenativefoundation.store:store5:5.0.0" )
51
- implementation(" org.jetbrains.kotlinx:atomicfu:0.18.5" )
45
+ implementation(" org.mobilenativefoundation.store:store5:5.1.0-alpha01" )
52
46
}
53
47
}
54
48
```
@@ -128,7 +122,7 @@ store.clear(key)
128
122
### License
129
123
130
124
``` text
131
- Copyright (c) 2022 Mobile Native Foundation.
125
+ Copyright (c) 2024 Mobile Native Foundation.
132
126
Licensed under the Apache License, Version 2.0 (the "License");
133
127
you may not use this file except in compliance with the License.
134
128
```
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ org.gradle.jvmargs=-XX:MaxMetaspaceSize=2G
8
8
9
9
# POM file
10
10
GROUP =org.mobilenativefoundation.store
11
- VERSION_NAME =5.1.0-SNAPSHOT
11
+ VERSION_NAME =5.1.0-alpha01
12
12
POM_PACKAGING =pom
13
13
POM_DESCRIPTION = Store5 is a Kotlin Multiplatform network-resilient repository layer
14
14
You can’t perform that action at this time.
0 commit comments