fixes and versions updates

This commit is contained in:
InsanusMokrassar 2022-03-15 16:30:32 +06:00
parent 9c667f4b78
commit 3cbb19ba2c
4 changed files with 9 additions and 3 deletions

View File

@ -2,6 +2,9 @@
## 0.9.14
* `Versions`:
* `Klock`: `2.6.2` -> `2.6.3`
* `Ktor`: `1.6.7` -> `1.6.8`
* `Ktor`:
* Add temporal files uploading functionality (for clients to upload and for server to receive)

View File

@ -8,10 +8,10 @@ jb-compose = "1.1.1"
jb-exposed = "0.37.3"
jb-dokka = "1.6.10"
klock = "2.6.2"
klock = "2.6.3"
uuid = "0.4.0"
ktor = "1.6.7"
ktor = "1.6.8"
gh-release = "2.2.12"

View File

@ -1,8 +1,10 @@
package dev.inmo.micro_utils.ktor.common
import kotlin.jvm.JvmInline
import kotlinx.serialization.Serializable
const val DefaultTemporalFilesSubPath = "temp_upload"
@Serializable
@JvmInline
value class TemporalFileId(val string: String)

View File

@ -94,7 +94,8 @@ class UnifiedRouter(
}
companion object {
val default = defaultUnifiedRouter
val default
get() = defaultUnifiedRouter
}
}