Skip to content

Commit

Permalink
Merge pull request #31 from reduxkotlin/task/update-docs
Browse files Browse the repository at this point in the history
update docs for 0.2.9
  • Loading branch information
patjackson52 committed Nov 29, 2019
2 parents 503579d + 87beb5c commit 3548063
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -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
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
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

0 comments on commit 3548063

Please sign in to comment.