mirror of
https://github.com/InsanusMokrassar/KSLog.git
synced 2025-10-27 17:40:07 +00:00
Compare commits
16 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8bb34d6842 | |||
| cff3f71de7 | |||
| aab0ac064f | |||
| d2909ed5f0 | |||
| 81eba88ce9 | |||
| a73f0d132c | |||
| bd87184f81 | |||
| 7228e81344 | |||
| ac828b1af7 | |||
| a8c85b9614 | |||
| 98fbf43d4d | |||
| ef8a3e1500 | |||
| 3edbb78d56 | |||
| 663395ccbe | |||
| ecd2b08c69 | |||
| f5e50d00a2 |
3
.gitignore
vendored
3
.gitignore
vendored
@@ -1,4 +1,6 @@
|
||||
.idea
|
||||
.kotlin
|
||||
kotlin-js-store/
|
||||
out/*
|
||||
*.iml
|
||||
target
|
||||
@@ -12,5 +14,6 @@ out/
|
||||
secret.gradle
|
||||
local.*
|
||||
local/
|
||||
**/*.local.*
|
||||
|
||||
publishing.sh
|
||||
|
||||
18
CHANGELOG.md
18
CHANGELOG.md
@@ -1,5 +1,23 @@
|
||||
# Changelog
|
||||
|
||||
## 1.4.0
|
||||
|
||||
* `Kotlin`: `2.1.0`
|
||||
|
||||
## 1.3.6
|
||||
|
||||
* `Kotlin`: `2.0.20`
|
||||
|
||||
## 1.3.5
|
||||
|
||||
* `Kotlin`: `2.0.10`
|
||||
* Android SDK Level: `35`
|
||||
|
||||
## 1.3.4
|
||||
|
||||
* `Kotlin`: `1.9.24`
|
||||
* Native realization of `KSLoggerDefaultPlatformLoggerLambda` now is common for all native targets
|
||||
|
||||
## 1.3.3
|
||||
|
||||
* `Kotlin`: `1.9.23`
|
||||
|
||||
@@ -73,6 +73,10 @@ kotlin {
|
||||
dependencies {
|
||||
implementation libs.kotlin.test.common
|
||||
implementation libs.kotlin.test.annotations.common
|
||||
}
|
||||
}
|
||||
jvmTest {
|
||||
dependencies {
|
||||
implementation libs.kotlin.test.junit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,5 +10,5 @@ org.gradle.jvmargs=-Xmx512m
|
||||
# Project data
|
||||
|
||||
group=dev.inmo
|
||||
version=1.3.3
|
||||
android_code_version=30
|
||||
version=1.4.0
|
||||
android_code_version=34
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[versions]
|
||||
|
||||
kotlin = "1.9.23"
|
||||
kotlin-gradle-plugin = "8.3.0"
|
||||
kotlin = "2.1.0"
|
||||
kotlin-gradle-plugin = "8.2.2"
|
||||
|
||||
versions = "0.51.0"
|
||||
|
||||
@@ -9,12 +9,12 @@ dokka = "1.9.20"
|
||||
|
||||
dexcount = "4.0.0"
|
||||
junit_version = "4.12"
|
||||
test_ext_junit_version = "1.1.5"
|
||||
espresso_core = "3.5.1"
|
||||
test_ext_junit_version = "1.2.1"
|
||||
espresso_core = "3.6.1"
|
||||
|
||||
android-minSdk = "21"
|
||||
android-compileSdk = "34"
|
||||
android-buildTools = "34.0.0"
|
||||
android-compileSdk = "35"
|
||||
android-buildTools = "35.0.0"
|
||||
|
||||
github-release = "2.5.2"
|
||||
|
||||
|
||||
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,5 +1,5 @@
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,4 +0,0 @@
|
||||
package dev.inmo.kslog.common
|
||||
|
||||
actual var KSLoggerDefaultPlatformLoggerLambda: (level: LogLevel, tag: String, message: Any, throwable: Throwable?) -> Unit =
|
||||
printlnLogging
|
||||
@@ -1,4 +0,0 @@
|
||||
package dev.inmo.kslog.common
|
||||
|
||||
actual var KSLoggerDefaultPlatformLoggerLambda: (level: LogLevel, tag: String, message: Any, throwable: Throwable?) -> Unit =
|
||||
printlnLogging
|
||||
@@ -1,4 +0,0 @@
|
||||
package dev.inmo.kslog.common
|
||||
|
||||
actual var KSLoggerDefaultPlatformLoggerLambda: (level: LogLevel, tag: String, message: Any, throwable: Throwable?) -> Unit =
|
||||
printlnLogging
|
||||
Reference in New Issue
Block a user