Merge pull request #19 from InsanusMokrassar/0.6.2

0.6.2
This commit is contained in:
InsanusMokrassar 2021-07-30 11:02:45 +06:00 committed by GitHub
commit 9e9c09e364
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 31 additions and 12 deletions

View File

@ -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 }}

12
.github/workflows/regular_build.yml vendored Normal file
View File

@ -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

View File

@ -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

View File

@ -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()
}

View File

@ -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