Skip to content

Commit 436ac1d

Browse files
Merge pull request #26 from GitLiveApp/1.6.21
1.6.10
2 parents 3ca877e + 6b17d48 commit 436ac1d

File tree

5 files changed

+17
-16
lines changed

5 files changed

+17
-16
lines changed

.github/workflows/publish-master.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99
runs-on: macos-latest
1010
steps:
1111
- uses: actions/checkout@v1
12-
13-
- name: Set up JDK 1.8
14-
uses: actions/setup-java@v1
12+
13+
- uses: actions/setup-java@v3
1514
with:
16-
java-version: 1.8
15+
distribution: 'zulu'
16+
java-version: 11
1717

1818
- name: Change package version
1919
uses: eskatos/gradle-command-action@v1

.github/workflows/pull_request.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@ jobs:
77
runs-on: macos-latest
88
steps:
99
- uses: actions/checkout@v2
10-
- name: Set up JDK 1.8
11-
uses: actions/setup-java@v1
10+
11+
- uses: actions/setup-java@v3
1212
with:
13-
java-version: 1.8
13+
distribution: 'zulu'
14+
java-version: 11
1415

1516
- name: Short SHA
1617
env:
@@ -19,13 +20,13 @@ jobs:
1920

2021
- name: Read version
2122
id: read_version
22-
uses: reedyuk/read-properties@v1.0.0
23+
uses: reedyuk/read-properties@v1.0.1
2324
with:
2425
path: 'gradle.properties'
2526
property: 'version'
2627

2728
- name: Update version
28-
uses: reedyuk/write-properties@v1.0.0
29+
uses: reedyuk/write-properties@v1.0.1
2930
with:
3031
path: 'gradle.properties'
3132
property: 'version'

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version = project.property("version") as String
66
plugins {
77
`maven-publish`
88
signing
9-
kotlin("multiplatform") version "1.5.32"
9+
kotlin("multiplatform") version "1.6.10"
1010
}
1111

1212
repositories {
@@ -19,7 +19,7 @@ kotlin {
1919
jvm {
2020
compilations.all {
2121
kotlinOptions {
22-
jvmTarget = "1.8"
22+
jvmTarget = JavaVersion.VERSION_11.toString()
2323
}
2424
}
2525
testRuns["test"].executionTask.configure { useJUnit() }

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
version=4.11.6-0fd38db
2-
kotlin_version=1.5.32
3-
kotlinx-coroutines.version=1.5.2
1+
version=4.11.7-0fd38db
2+
kotlin_version=1.6.10
3+
kotlinx-coroutines.version=1.6.0
44

55
kotlin.code.style=official
66
kotlin.incremental.multiplatform=true

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@gitliveapp/kotlin-diff-utils",
2+
"name": "@gitliveapp/kotlin-diff-utils-js-legacy",
33
"version": "0",
44
"description": "The DiffUtils library for computing diffs, applying patches, generating side-by-side view in Java.",
55
"main": "kotlin-diff-utils-js-legacy.js",
@@ -26,6 +26,6 @@
2626
},
2727
"homepage": "https://github.com/GitLiveApp/kotlin-diff-utils#readme",
2828
"dependencies": {
29-
"kotlin": "1.5.32"
29+
"kotlin": "1.6.10"
3030
}
3131
}

0 commit comments

Comments
 (0)