Merge pull request #12 from InsanusMokrassar/0.3.1

0.3.1
This commit is contained in:
InsanusMokrassar 2022-06-15 16:43:21 +06:00 committed by GitHub
commit b819a68cb5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 6 deletions

View File

@ -1,5 +1,9 @@
# Changelog # Changelog
## 0.3.1
* Technical fixes for compatibility with Java 8
## 0.3.0 ## 0.3.0
* **BREAKING CHANGE**: Filters will not accept message since this update * **BREAKING CHANGE**: Filters will not accept message since this update

View File

@ -33,7 +33,13 @@ repositories {
} }
kotlin { kotlin {
jvm() jvm {
compilations.main {
kotlinOptions {
jvmTarget = "1.8"
}
}
}
js(IR) { js(IR) {
browser() browser()
nodejs() nodejs()
@ -52,9 +58,8 @@ kotlin {
} }
java { java {
toolchain { sourceCompatibility = JavaVersion.VERSION_1_8
languageVersion = JavaLanguageVersion.of(8) targetCompatibility = JavaVersion.VERSION_1_8
}
} }
apply from: "defaultAndroidSettings.gradle" apply from: "defaultAndroidSettings.gradle"

View File

@ -9,5 +9,5 @@ android.enableJetifier=true
# Project data # Project data
group=dev.inmo group=dev.inmo
version=0.3.0 version=0.3.1
android_code_version=7 android_code_version=8