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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
## Unreleased
- kotlin 1.3.70

## [0.3.2] - 2020-02-22
- issue #34 - incorrect same thread enforcement behavior fixed
Expand Down
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.3.2"
implementation "org.reduxkotlin:redux-kotlin:0.4.0"
}
}
}
```

For JVM only:
```
implementation "org.reduxkotlin:redux-kotlin-jvm:0.3.2"
implementation "org.reduxkotlin:redux-kotlin-jvm:0.4.0"
```

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
6 changes: 3 additions & 3 deletions buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ object Versions {

const val androidx_test_runner: String = "1.2.0"

const val atrium: String = "0.8.0"
const val atrium: String = "0.9.2"

const val aapt2: String = "3.5.0-5435860"

const val com_android_tools_build_gradle: String = "3.5.0"
const val com_android_tools_build_gradle: String = "3.6.0"

const val lint_gradle: String = "26.5.0"

Expand All @@ -34,7 +34,7 @@ object Versions {

const val dokka_gradle_plugin: String = "0.9.17" // available: "0.9.18"

const val org_jetbrains_kotlin: String = "1.3.61"
const val org_jetbrains_kotlin: String = "1.3.70"

const val spek: String = "2.1.0-alpha.0.11+d97ef33"
// available: "2.1.0-alpha.0.24+0fdeb6e"
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ android.enableJetifier=true
kotlin.code.style=official

GROUP=org.reduxkotlin.redux-kotlin
VERSION_NAME=0.3.2
VERSION_NAME=0.4.0

POM_ARTIFACT_ID=reduxkotlin
POM_DESCRIPTION=Redux implementation for Kotlin. Mulitiplatform supported.
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.2.2-all.zip
2 changes: 1 addition & 1 deletion lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ apply plugin: 'kotlin-multiplatform'
archivesBaseName = 'redux-kotlin'

group 'org.reduxkotlin'
version '0.3.2'
version '0.4.0'

kotlin {
jvm()
Expand Down
1 change: 0 additions & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,3 @@ include(
rootProject.name = 'Redux-Kotlin'

enableFeaturePreview('GRADLE_METADATA')
enableFeaturePreview('STABLE_PUBLISHING')