Skip to content

Commit 9ab06a3

Browse files
authored
Merge pull request #4 from reduxkotlin/task/kotlin-1.3.70
Update kotlin & gradle
2 parents 4eaa735 + e3a8d91 commit 9ab06a3

File tree

6 files changed

+7
-44
lines changed

6 files changed

+7
-44
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@ kotlin {
4141
sourceSets {
4242
commonMain { // <--- name may vary on your project
4343
dependencies {
44-
implementation "org.reduxkotlin:redux-kotlin-reselect:0.2.9"
44+
implementation "org.reduxkotlin:redux-kotlin-reselect:0.4.0"
4545
}
4646
}
4747
}
4848
```
4949

5050
For JVM only:
5151
```
52-
implementation "org.reduxkotlin:redux-kotlin-jvm-reselect:0.2.9"
52+
implementation "org.reduxkotlin:redux-kotlin-jvm-reselect:0.4.0"
5353
```
5454

5555
[badge-android]: http://img.shields.io/badge/platform-android-brightgreen.svg?style=flat

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
24-
VERSION_NAME=0.1.1
24+
VERSION_NAME=0.4.0
2525

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

gradle/dependencies.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ext.versions = [
2-
kotlin : '1.3.41',
2+
kotlin : '1.3.70',
33
dokka : '0.9.17',
44
spek : '2.1.0-alpha.0.9+3d5d865',
55
atrium : '0.8.0'

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.3.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.2.2-all.zip

lib/build.gradle

Lines changed: 2 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ apply plugin: 'kotlin-multiplatform'
77
archivesBaseName = 'reselect'
88

99
group 'org.reduxkotlin'
10-
version '0.2.9'
10+
version '0.4.0'
1111

1212
kotlin {
1313
jvm()
@@ -20,48 +20,12 @@ kotlin {
2020
}
2121
}
2222
}
23-
//-module-name args are needed to prevent circular deps bug on native platforms
24-
iosArm64("ios") {
25-
compilations.main.extraOpts.addAll(["-module-name", "reselect"])
26-
}
27-
28-
iosX64("iosSim") {
29-
compilations.main.extraOpts.addAll(["-module-name", "reselect"])
30-
}
31-
macosX64("macos") {
32-
compilations.main.extraOpts.addAll(["-module-name", "reselect"])
33-
}
34-
35-
mingwX64("win") {
36-
compilations.main.extraOpts.addAll(["-module-name", "reselect"])
37-
}
38-
39-
wasm32("wasm") {
40-
compilations.main.extraOpts.addAll(["-module-name", "reselect"])
41-
}
42-
43-
linuxArm32Hfp("linArm32") {
44-
compilations.main.extraOpts.addAll(["-module-name", "reselect"])
45-
}
46-
47-
linuxMips32("linMips32") {
48-
compilations.main.extraOpts.addAll(["-module-name", "reselect"])
49-
}
50-
51-
linuxMipsel32("linMipsel32") {
52-
compilations.main.extraOpts.addAll(["-module-name", "reselect"])
53-
}
54-
55-
linuxX64("lin64") {
56-
compilations.main.extraOpts.addAll(["-module-name", "reselect"])
57-
}
58-
5923

6024
sourceSets {
6125
commonMain {
6226
dependencies {
6327
implementation kotlin("stdlib-common")
64-
implementation "org.reduxkotlin:redux-kotlin:0.2.6"
28+
implementation "org.reduxkotlin:redux-kotlin:0.4.0"
6529
}
6630
}
6731
commonTest {

settings.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,4 @@ rootProject.name='Redux-Kotlin-reselect'
1414

1515
rootProject.name = 'test'
1616
enableFeaturePreview('GRADLE_METADATA')
17-
enableFeaturePreview('STABLE_PUBLISHING')
1817

0 commit comments

Comments
 (0)