mirror of
https://github.com/InsanusMokrassar/KSLog.git
synced 2025-10-28 01:50:06 +00:00
Compare commits
12 Commits
1.2.1-test
...
1.2.4
| Author | SHA1 | Date | |
|---|---|---|---|
| 48eeb6660e | |||
| ff14fd5e7c | |||
| aa7bd6179a | |||
| ef72365505 | |||
| c0a10436be | |||
| a3170786a7 | |||
| d60e35f1e9 | |||
| bed00407fb | |||
| f326d9070a | |||
| b4c454141e | |||
| 1a589c675e | |||
| d25a73df3d |
15
CHANGELOG.md
15
CHANGELOG.md
@@ -1,5 +1,20 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 1.2.4
|
||||||
|
|
||||||
|
**This update contains migration onto gradle 8+ (for both wrapper and android plugin). Use it with caution**
|
||||||
|
|
||||||
|
## 1.2.3
|
||||||
|
|
||||||
|
* `Kotlin`: `1.9.20`
|
||||||
|
|
||||||
|
## 1.2.2
|
||||||
|
|
||||||
|
**wasm32 target has been removed**
|
||||||
|
**mingwX86 target has been removed**
|
||||||
|
|
||||||
|
* `Kotlin`: `1.9.20-RC`
|
||||||
|
|
||||||
## 1.2.1
|
## 1.2.1
|
||||||
|
|
||||||
* `Kotlin`: `1.9.10`
|
* `Kotlin`: `1.9.10`
|
||||||
|
|||||||
@@ -49,7 +49,7 @@ kotlin {
|
|||||||
publishAllLibraryVariants()
|
publishAllLibraryVariants()
|
||||||
compilations.all {
|
compilations.all {
|
||||||
kotlinOptions {
|
kotlinOptions {
|
||||||
jvmTarget = "1.8"
|
jvmTarget = "17"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -61,9 +61,7 @@ kotlin {
|
|||||||
nodejs()
|
nodejs()
|
||||||
d8()
|
d8()
|
||||||
}
|
}
|
||||||
wasm32()
|
|
||||||
mingwX64()
|
mingwX64()
|
||||||
mingwX86()
|
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
commonMain {
|
commonMain {
|
||||||
|
|||||||
@@ -52,8 +52,8 @@ android {
|
|||||||
}
|
}
|
||||||
|
|
||||||
compileOptions {
|
compileOptions {
|
||||||
sourceCompatibility JavaVersion.VERSION_1_8
|
sourceCompatibility JavaVersion.VERSION_17
|
||||||
targetCompatibility JavaVersion.VERSION_1_8
|
targetCompatibility JavaVersion.VERSION_17
|
||||||
}
|
}
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
|
|||||||
@@ -10,5 +10,5 @@ org.gradle.jvmargs=-Xmx512m
|
|||||||
# Project data
|
# Project data
|
||||||
|
|
||||||
group=dev.inmo
|
group=dev.inmo
|
||||||
version=1.2.1
|
version=1.2.4
|
||||||
android_code_version=23
|
android_code_version=26
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
[versions]
|
[versions]
|
||||||
|
|
||||||
kotlin = "1.9.10"
|
kotlin = "1.9.20"
|
||||||
kotlin-gradle-plugin = "8.1.1"
|
kotlin-gradle-plugin = "8.1.2"
|
||||||
|
|
||||||
versions = "0.48.0"
|
versions = "0.49.0"
|
||||||
|
|
||||||
dokka = "1.9.0"
|
dokka = "1.9.10"
|
||||||
|
|
||||||
dexcount = "4.0.0"
|
dexcount = "4.0.0"
|
||||||
junit_version = "4.12"
|
junit_version = "4.12"
|
||||||
|
|||||||
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,5 +1,5 @@
|
|||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
|||||||
@@ -103,4 +103,10 @@ if (project.hasProperty("signing.gnupg.keyName")) {
|
|||||||
dependsOn(it)
|
dependsOn(it)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Workaround to make android sign operations depend on signing tasks
|
||||||
|
project.getTasks().withType(AbstractPublishToMaven.class).configureEach {
|
||||||
|
def signingTasks = project.getTasks().withType(Sign.class)
|
||||||
|
mustRunAfter(signingTasks)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +0,0 @@
|
|||||||
package dev.inmo.kslog.common
|
|
||||||
|
|
||||||
internal actual val defaultLogging: (level: LogLevel, tag: String, message: Any, throwable: Throwable?) -> Unit
|
|
||||||
get() = printlnLogging
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
package dev.inmo.kslog.common
|
|
||||||
|
|
||||||
internal actual val defaultLogging: (level: LogLevel, tag: String, message: Any, throwable: Throwable?) -> Unit
|
|
||||||
get() = printlnLogging
|
|
||||||
Reference in New Issue
Block a user