Skip to content

Commit 5f9ed10

Browse files
author
Martynas Petuška
committed
Kotlin 1.4.0-rc
1 parent 2411021 commit 5f9ed10

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
buildscript {
22
repositories {
33
google()
4+
mavenCentral()
45
maven { url 'https://dl.bintray.com/jetbrains/kotlin-native-dependencies' }
56
maven { url "https://plugins.gradle.org/m2/" }
67
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }

buildSrc/src/main/kotlin/Versions.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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.72"
37+
const val org_jetbrains_kotlin: String = "1.4.0-rc"
3838

3939
const val spek: String = "2.1.0-alpha.0.11+d97ef33"
4040
// available: "2.1.0-alpha.0.24+0fdeb6e"
@@ -43,9 +43,9 @@ object Versions {
4343

4444
const val recycler_view = "1.0.0"
4545

46-
const val coroutines = "1.3.7"
46+
const val coroutines = "1.3.8-1.4.0-rc"
4747

48-
const val atomicFu = "0.14.2"
48+
const val atomicFu = "0.14.3-1.4.0-rc"
4949

5050
/**
5151
*

gradle.properties

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,11 @@ android.useAndroidX=true
1919
android.enableJetifier=true
2020
# Kotlin code style for this project: "official" or "obsolete":
2121
kotlin.code.style=official
22+
kotlin.native.ignoreDisabledTargets=true
23+
kotlin.mpp.enableGranularSourceSetsMetadata=true
2224

2325
GROUP=org.reduxkotlin
24-
VERSION_NAME=0.5.3
26+
VERSION_NAME=0.5.3-1.4.0-rc
2527

2628
POM_ARTIFACT_ID=reduxkotlin
2729
POM_DESCRIPTION=Redux implementation for Kotlin. Mulitiplatform supported.

redux-kotlin/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ kotlin {
3232

3333
commonMain {
3434
dependencies {
35-
implementation kotlin("stdlib-common")
35+
// api kotlin("stdlib-common")
3636
}
3737
}
3838
commonTest {
@@ -49,7 +49,7 @@ kotlin {
4949
jvmMain {
5050
kotlin.srcDir('src/jvmMain/kotlin')
5151
dependencies {
52-
implementation kotlin("stdlib")
52+
// api kotlin("stdlib")
5353
}
5454
}
5555
jvmTest {
@@ -69,7 +69,7 @@ kotlin {
6969
jsMain {
7070
kotlin.srcDir('src/jsMain/kotlin')
7171
dependencies {
72-
implementation kotlin("stdlib-js")
72+
api kotlin("stdlib-js")
7373
}
7474
compileKotlinJs {
7575
kotlinOptions.metaInfo = true

settings.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,3 @@ include(
1818
)
1919

2020
rootProject.name = 'Redux-Kotlin'
21-
22-
enableFeaturePreview('GRADLE_METADATA')

0 commit comments

Comments
 (0)