Skip to content

Commit 7f85b6a

Browse files
authored
Merge pull request #22 from reduxkotlin/task/kotlin-1.4.0
Kotlin 1.4.0 final and gradle 6.6
2 parents d80921d + 448f736 commit 7f85b6a

File tree

5 files changed

+11
-17
lines changed

5 files changed

+11
-17
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,4 @@ jobs:
1313
- uses: actions/checkout@v2
1414

1515
- name: Test
16-
run: ./gradlew jvmTest
17-
18-
- name: Archive redux-kotlin Test Reports
19-
uses: actions/upload-artifact@v1
20-
with:
21-
name: redux-kotlin_test_reports
22-
path: redux-kotlin/build/reports/tests
23-
24-
- name: Archive redux-kotlin-threadsafe Test Reports
25-
uses: actions/upload-artifact@v1
26-
with:
27-
name: redux-kotlin-thunk_test_reports
28-
path: redux-kotlin-thunk/build/reports/tests
16+
run: ./gradlew build

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
## Unreleased
2+
3+
## [0.5.4] - 2020-08-16
4+
- kotlin 1.4.0 final
5+
- change test.yml to just run a build (currently no tests)
6+
- update to redux-kotlin 0.5.5

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ kotlin.code.style=official
2222
org.gradle.internal.publish.checksums.insecure=true
2323

2424
GROUP=org.reduxkotlin
25-
VERSION_NAME=0.5.3
25+
VERSION_NAME=0.5.4
2626

2727
POM_ARTIFACT_ID=reduxkotlin-thunk
2828
POM_DESCRIPTION=Redux thunmk implementation for Redux-Kotlin. Mulitiplatform supported.

gradle/dependencies.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
ext.versions = [
2-
kotlin : '1.3.72',
2+
kotlin : '1.4.0',
33
dokka : '0.9.17',
44
spek : '2.1.0-alpha.0.9+3d5d865',
55
atrium : '0.8.0',
6-
redux : '0.5.3'
6+
redux : '0.5.5'
77
]
88

99
ext.deps = [
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6-all.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)