Skip to content

Commit 47dd310

Browse files
authored
Merge pull request #40 from reduxkotlin/task/kotlin-1.3.70
Update to Kotlin 1.3.70
2 parents 0ac7b90 + 9abecb6 commit 47dd310

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
## Unreleased
2+
- kotlin 1.3.70
23

34
## [0.3.2] - 2020-02-22
45
- issue #34 - incorrect same thread enforcement behavior fixed

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.2"
47+
implementation "org.reduxkotlin:redux-kotlin:0.4.0"
4848
}
4949
}
5050
}
5151
```
5252

5353
For JVM only:
5454
```
55-
implementation "org.reduxkotlin:redux-kotlin-jvm:0.3.2"
55+
implementation "org.reduxkotlin:redux-kotlin-jvm:0.4.0"
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/.

buildSrc/src/main/kotlin/Versions.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ object Versions {
1818

1919
const val androidx_test_runner: String = "1.2.0"
2020

21-
const val atrium: String = "0.8.0"
21+
const val atrium: String = "0.9.2"
2222

2323
const val aapt2: String = "3.5.0-5435860"
2424

25-
const val com_android_tools_build_gradle: String = "3.5.0"
25+
const val com_android_tools_build_gradle: String = "3.6.0"
2626

2727
const val lint_gradle: String = "26.5.0"
2828

@@ -34,7 +34,7 @@ object Versions {
3434

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

37-
const val org_jetbrains_kotlin: String = "1.3.61"
37+
const val org_jetbrains_kotlin: String = "1.3.70"
3838

3939
const val spek: String = "2.1.0-alpha.0.11+d97ef33"
4040
// available: "2.1.0-alpha.0.24+0fdeb6e"

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ android.enableJetifier=true
2121
kotlin.code.style=official
2222

2323
GROUP=org.reduxkotlin.redux-kotlin
24-
VERSION_NAME=0.3.2
24+
VERSION_NAME=0.4.0
2525

2626
POM_ARTIFACT_ID=reduxkotlin
2727
POM_DESCRIPTION=Redux implementation for Kotlin. Mulitiplatform supported.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.2.2-all.zip

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.2'
10+
version '0.4.0'
1111

1212
kotlin {
1313
jvm()

settings.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,3 @@ include(
1919
rootProject.name = 'Redux-Kotlin'
2020

2121
enableFeaturePreview('GRADLE_METADATA')
22-
enableFeaturePreview('STABLE_PUBLISHING')

0 commit comments

Comments
 (0)