diff --git a/.github/workflows/publishing_packages.yml b/.github/workflows/publishing_packages.yml index df9d39f..c16f566 100644 --- a/.github/workflows/publishing_packages.yml +++ b/.github/workflows/publishing_packages.yml @@ -1,4 +1,3 @@ - name: Publish package to GitHub Packages on: [push] jobs: @@ -16,7 +15,7 @@ jobs: - name: prebuild run: ./gradlew clean build - name: Publish package - run: ./gradlew --no-parallel publishAllPublicationsToGithubPackagesRepository -x signJsPublication -x signJvmPublication -x signKotlinMultiplatformPublication -x signMetadataPublication -x signAndroidReleasePublication + run: ./gradlew --no-parallel publishAllPublicationsToGithubPackagesRepository -x signJsPublication -x signJvmPublication -x signKotlinMultiplatformPublication -x signAndroidReleasePublication env: GITHUBPACKAGES_USER: ${{ github.actor }} GITHUBPACKAGES_PASSWORD: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/regular_build.yml b/.github/workflows/regular_build.yml new file mode 100644 index 0000000..73f3f3d --- /dev/null +++ b/.github/workflows/regular_build.yml @@ -0,0 +1,12 @@ +name: Regular build +on: [push] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-java@v1 + with: + java-version: 1.8 + - name: build + run: ./gradlew clean build diff --git a/CHANGELOG.md b/CHANGELOG.md index 671ed32..9230816 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 0.6.2 + +**LEGACY COMPILER VARIANT FOR JS IS NOT AVAILABLE SINCE THIS UPDATE** + +* Versions + * `Kotlin`: `1.5.21` + * `Coroutines`: `1.5.1` + * `Klock`: `2.3.1` + ## 0.6.1 * Versions diff --git a/build.gradle b/build.gradle index f3e83c8..9b0dbb8 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,7 @@ buildscript { repositories { mavenLocal() - jcenter() + // jcenter() mavenCentral() google() } @@ -40,9 +40,9 @@ apply from: "github_release.gradle" repositories { mavenLocal() - jcenter() + // jcenter() mavenCentral() - maven { url "https://kotlin.bintray.com/kotlinx" } + // maven { url "https://kotlin.bintray.com/kotlinx" } google() } @@ -50,7 +50,7 @@ apply from: './dokka.gradle' kotlin { jvm() - js(BOTH) { + js(IR) { browser() nodejs() } diff --git a/gradle.properties b/gradle.properties index 22a107f..3c9c3cb 100644 --- a/gradle.properties +++ b/gradle.properties @@ -8,12 +8,12 @@ android.useAndroidX=true android.enableJetifier=false -kotlin_version=1.5.10 -kotlin_coroutines_version=1.5.0 +kotlin_version=1.5.21 +kotlin_coroutines_version=1.5.1 dokka_version=1.4.32 -klockVersion=2.1.2 +klockVersion=2.3.1 ## Github reease @@ -33,6 +33,5 @@ androidx_work_version=2.5.0 ## Common -version=0.6.1 -android_code_version=5 - +version=0.6.2 +android_code_version=6