Skip to content

Commit 8cfdafd

Browse files
authored
Merge pull request #57 from reduxkotlin/task/update-doc-version
update docs with new version num
2 parents 8adefaf + 0f1688b commit 8cfdafd

File tree

4 files changed

+13
-8
lines changed

4 files changed

+13
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
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

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
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

5353
For 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)

website/docs/introduction/GettingStarted.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
4949
dependencies {
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

website/docs/introduction/Threading.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)