Skip to content

Commit 038fce1

Browse files
authored
update docs to use 0.3.1 (#36)
1 parent 328f537 commit 038fce1

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
## Unreleased
22

3+
## [0.3.1] - 2019-12-16
4+
5+
### Changed
6+
- update same thread enforcement message to not be getState only
7+
38
## [0.3.0] - 2019-12-16
49

510
### Added

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,15 @@ kotlin {
4444
sourceSets {
4545
commonMain { // <--- name may vary on your project
4646
dependencies {
47-
implementation "org.reduxkotlin:redux-kotlin:0.3.0"
47+
implementation "org.reduxkotlin:redux-kotlin:0.3.1"
4848
}
4949
}
5050
}
5151
```
5252

5353
For JVM only:
5454
```
55-
implementation "org.reduxkotlin:redux-kotlin-jvm:0.3.0"
55+
implementation "org.reduxkotlin:redux-kotlin-jvm:0.3.1"
5656
```
5757

5858
Usage is very similar to JS Redux and those docs will be useful https://redux.js.org/. These docs are not an intro to Redux, and just documentation on Kotlin specific bits. For more info on Redux in general, check out https://redux.js.org/.

lib/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ apply plugin: 'kotlin-multiplatform'
77
archivesBaseName = 'redux-kotlin'
88

99
group 'org.reduxkotlin'
10-
version '0.3.0'
10+
version '0.3.1'
1111

1212
kotlin {
1313
jvm()

website/docs/introduction/GettingStarted.md

Lines changed: 2 additions & 2 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:0.3.0"
36+
implementation "org.reduxkotlin:redux-kotlin:0.3.1"
3737
}
3838
}
3939
}
@@ -47,7 +47,7 @@ __For single platform project (i.e. just Android):__
4747

4848
```groovy
4949
dependencies {
50-
implementation "org.reduxkotlin:redux-kotlin:0.3.0"
50+
implementation "org.reduxkotlin:redux-kotlin:0.3.1"
5151
}
5252
```
5353

0 commit comments

Comments
 (0)