Skip to content

Commit 7b64913

Browse files
committed
update kmp-xlog-api
1 parent af94b00 commit 7b64913

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
object Consts {
22
const val releaseGroup = "com.piasy"
33
const val releaseName = "kmp-socketio"
4-
const val releaseVersion = "1.3.2"
4+
const val releaseVersion = "1.3.3"
55

66
val androidNS = "$releaseGroup.${releaseName.replace('-', '.')}"
77
}

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ ktor-client-curl = { module = "io.ktor:ktor-client-curl", version.ref = "ktor" }
3232
ktor-client-js = { module = "io.ktor:ktor-client-js", version.ref = "ktor" }
3333
ktor-client-java = { module = "io.ktor:ktor-client-java", version.ref = "ktor" }
3434
ktor-client-cio = { module = "io.ktor:ktor-client-cio", version.ref = "ktor" }
35-
kmpXlog = "com.piasy:kmp-xlog-api:1.4.2"
35+
kmpXlog = "com.piasy:kmp-xlog-api:1.4.3"
3636

3737
androidx-compose-ui = { module = "androidx.compose.ui:ui", version.ref = "compose" }
3838
androidx-compose-ui-tooling = { module = "androidx.compose.ui:ui-tooling", version.ref = "compose" }

kmp-socketio/src/commonMain/kotlin/com/piasy/kmp/socketio/engineio/defs.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ enum class State {
44
INIT, OPENING, OPEN, CLOSING, CLOSED, PAUSED
55
}
66

7-
@Target(AnnotationTarget.FUNCTION)
7+
@Target(AnnotationTarget.FUNCTION, AnnotationTarget.CONSTRUCTOR)
88
@Retention(AnnotationRetention.SOURCE)
99
annotation class WorkThread
1010

11-
@Target(AnnotationTarget.FUNCTION)
11+
@Target(AnnotationTarget.FUNCTION, AnnotationTarget.CONSTRUCTOR)
1212
@Retention(AnnotationRetention.SOURCE)
1313
annotation class IoThread
1414

15-
@Target(AnnotationTarget.FUNCTION)
15+
@Target(AnnotationTarget.FUNCTION, AnnotationTarget.CONSTRUCTOR)
1616
@Retention(AnnotationRetention.SOURCE)
1717
annotation class CallerThread

0 commit comments

Comments
 (0)