File tree Expand file tree Collapse file tree 4 files changed +13
-8
lines changed
website/docs/introduction Expand file tree Collapse file tree 4 files changed +13
-8
lines changed Original file line number Diff line number Diff line change 11## Unreleased
22
3- ## [ 0.5.0] - 2020-06-11
3+ ## [ 0.5.2] - 2020-07-03
4+ - publish all available platforms to maven
5+ - add CI/CD through github actions
6+
7+ ## [ 0.5.1] - 2020-06-11
48 - update lib dependency to api import, so core lib is included in redux-kotlin-threadsafe
9+
510## [ 0.5.0] - 2020-06-11
611 - kotlin 1.3.72
712 - createThreadSafeStore fun added for thread synchronized access
Original file line number Diff line number Diff line change 1111![ badge] [ badge-mac ]
1212![ badge] [ badge-wasm ]
1313
14- A redux standard for Kotlin that supports multiplatform projects
14+ A redux standard for Kotlin that supports multiplatform projects.
1515
1616## Misson Statement
1717
@@ -44,15 +44,15 @@ kotlin {
4444 sourceSets {
4545 commonMain { // <--- name may vary on your project
4646 dependencies {
47- implementation "org.reduxkotlin:redux-kotlin-threadsafe:0.5.1 "
47+ implementation "org.reduxkotlin:redux-kotlin-threadsafe:0.5.2 "
4848 }
4949 }
5050 }
5151```
5252
5353For JVM only:
5454```
55- implementation "org.reduxkotlin:redux-kotlin-threadsafe-jvm:0.5.1 "
55+ implementation "org.reduxkotlin:redux-kotlin-threadsafe-jvm:0.5.2 "
5656```
5757
5858* Non threadsafe store is available. Typical usage will be with the threadsafe store. [ More info read here] ( https://www.reduxkotlin.org/introduction/getting-started )
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ kotlin {
3333 sourceSets {
3434 commonMain {
3535 dependencies {
36- implementation "org.reduxkotlin:redux-kotlin-threadsafe:0.5.1 "
36+ implementation "org.reduxkotlin:redux-kotlin-threadsafe:0.5.2 "
3737 }
3838 }
3939 }
@@ -47,11 +47,11 @@ __For single platform project (i.e. just Android):__
4747
4848``` groovy
4949dependencies {
50- implementation "org.reduxkotlin:redux-kotlin-threadsafe-jvm:0.5.1 "
50+ implementation "org.reduxkotlin:redux-kotlin-threadsafe-jvm:0.5.2 "
5151}
5252```
5353
54- NOTE: If threadsafety is not a concern (i.e. a JS only project) "org.reduxkotlin:redux-kotlin:0.5.1 " may be used.
54+ NOTE: If threadsafety is not a concern (i.e. a JS only project) "org.reduxkotlin:redux-kotlin:0.5.2 " may be used.
5555[ ** More info on threading available here.** ] ( /introduction/threading )
5656
5757## Basic Example
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ kotlin {
7474 sourceSets {
7575 commonMain {
7676 dependencies {
77- implementation "org.reduxkotlin:redux-kotlin:0.5.1 "
77+ implementation "org.reduxkotlin:redux-kotlin:0.5.2 "
7878 }
7979 }
8080 }
You can’t perform that action at this time.
0 commit comments