Skip to content

Commit

Permalink
Kotlin 1.4.0-rc (#10)
Browse files Browse the repository at this point in the history
* Move to kotlin 1.4.0-rc

* Removing broken WSL bash

see actions/runner-images#50

Co-authored-by: Salomon BRYS <[email protected]>
  • Loading branch information
Romain Boisselle and Salomon BRYS authored Aug 2, 2020
1 parent dbf8301 commit 2615187
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ jobs:
run: brew install automake
- name: Set up shell
if: matrix.os == 'windows-latest'
run: echo ::add-path::C:\msys64\usr\bin\
run: |
echo ::add-path::C:\msys64\usr\bin\
rm.exe "C:/WINDOWS/system32/bash.EXE"
- name: Check JVM
shell: bash
run: ./gradlew jvmTest
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ jobs:
run: brew install automake
- name: Set up shell
if: matrix.os == 'windows-latest'
run: echo ::add-path::C:\msys64\usr\bin\
run: |
echo ::add-path::C:\msys64\usr\bin\
rm.exe "C:/WINDOWS/system32/bash.EXE"
- name: Check JVM
shell: bash
run: ./gradlew jvmTest
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ jobs:
run: brew install automake
- name: Set up shell
if: matrix.os == 'windows-latest'
run: echo ::add-path::C:\msys64\usr\bin\
run: |
echo ::add-path::C:\msys64\usr\bin\
rm.exe "C:/WINDOWS/system32/bash.EXE"
- name: Check JVM
shell: bash
run: ./gradlew jvmTest
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import org.apache.http.impl.auth.BasicScheme
import org.apache.http.auth.UsernamePasswordCredentials

plugins {
kotlin("multiplatform") version "1.4-M3"
kotlin("multiplatform") version "1.4.0-rc"
`maven-publish`
}

Expand All @@ -24,7 +24,7 @@ buildscript {

allprojects {
group = "fr.acinq.secp256k1"
version = "0.3.0-1.4-M3"
version = "0.3.0-1.4-rc"

repositories {
jcenter()
Expand Down

0 comments on commit 2615187

Please sign in to comment.