diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..fff0384 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,5 @@ +## [0.2.9] - 2019-11-23 + +### Changed + - update Kotlin to 1.3.60 + \ No newline at end of file diff --git a/README.md b/README.md index a855a47..5a2f40c 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ 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" } } } @@ -52,7 +52,7 @@ kotlin { 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/. diff --git a/website/docs/introduction/GettingStarted.md b/website/docs/introduction/GettingStarted.md index 47bdf1a..dcc7854 100644 --- a/website/docs/introduction/GettingStarted.md +++ b/website/docs/introduction/GettingStarted.md @@ -33,7 +33,7 @@ kotlin { sourceSets { commonMain { dependencies { - implementation "org.reduxkotlin:redux-kotlin:0.2.6" + implementation "org.reduxkotlin:redux-kotlin:0.2.9" } } } @@ -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" } ```