Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## [0.2.9] - 2019-11-23

### Changed
- update Kotlin to 1.3.60

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@ kotlin {
sourceSets {
commonMain { // <--- name may vary on your project
dependencies {
implementation "org.reduxkotlin:redux-kotlin:0.2.6"
implementation "org.reduxkotlin:redux-kotlin:0.2.9"
}
}
}
```

For JVM only:
```
implementation "org.reduxkotlin:redux-kotlin-jvm:0.2.6"
implementation "org.reduxkotlin:redux-kotlin-jvm:0.2.9"
```

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/.
Expand Down
4 changes: 2 additions & 2 deletions website/docs/introduction/GettingStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ kotlin {
sourceSets {
commonMain {
dependencies {
implementation "org.reduxkotlin:redux-kotlin:0.2.6"
implementation "org.reduxkotlin:redux-kotlin:0.2.9"
}
}
}
Expand All @@ -47,7 +47,7 @@ __For single platform project (i.e. just Android):__

```groovy
dependencies {
implementation "org.reduxkotlin:redux-kotlin:0.2.6"
implementation "org.reduxkotlin:redux-kotlin:0.2.9"
}
```

Expand Down