Skip to content

Commit

Permalink
update dependencies, fill changelog, update target and compatibility JDK
Browse files Browse the repository at this point in the history
  • Loading branch information
InsanusMokrassar committed Nov 2, 2023
1 parent de564d9 commit 7e7b4ba
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## 0.3.1

**This update contains upgrade up to gradle 8+. Be careful during to use of this library**

**This update have set up `compatibility` and `target` JDK versions to 17**

* `Versions`:
* `Kotlin`: `1.9.0` -> `1.9.20`
* `MicroUtils`: `0.20.0` -> `0.20.11`
Expand Down
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ kotlin-coroutines = "1.7.3"
kotlin-serialization = "1.6.0"
dokka = "1.9.10"

microutils = "0.20.11"
kslog = "1.2.3"
microutils = "0.20.12"
kslog = "1.2.4"
uuid = "0.8.1"

koin = "3.5.0"
Expand All @@ -25,7 +25,7 @@ android-multidex = "2.0.1"

android-core-ktx = "1.12.0"
android-appcompat = "1.6.1"
android-material = "1.9.0"
android-material = "1.10.0"
android-compose-material3 = "1.1.2"

github-release = "2.4.1"
Expand Down
6 changes: 3 additions & 3 deletions mppJavaProject.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ kotlin {
jvm {
compilations.main {
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "17"
}
}
}
Expand All @@ -34,6 +34,6 @@ kotlin {
}

java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
6 changes: 3 additions & 3 deletions mppProjectWithSerialization.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ kotlin {
jvm {
compilations.main {
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "17"
}
}
}
Expand Down Expand Up @@ -54,8 +54,8 @@ kotlin {
}

java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}

apply from: "$defaultAndroidSettingsPresetPath"

0 comments on commit 7e7b4ba

Please sign in to comment.