mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2025-09-18 14:59:24 +00:00
Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
8b18b07790 | |||
ab3c80a5ec | |||
075b93ecd6 | |||
f6d0f72e49 | |||
fcda3af862 | |||
d5c7a589b1 | |||
86e099ed25 | |||
ebd7befe73 |
17
CHANGELOG.md
17
CHANGELOG.md
@@ -1,5 +1,22 @@
|
||||
# Changelog
|
||||
|
||||
## 0.20.11
|
||||
|
||||
* `Versions`:
|
||||
* `Kotlin`: `1.9.20-RC2` -> `1.9.20`
|
||||
* `Exposed`: `0.44.0` -> `0.44.1`
|
||||
* `Compose`: `1.5.10-rc02` -> `1.5.10`
|
||||
* `Coroutines`:
|
||||
* `SmartRWLocker` now will wait first unlock of write mutex for acquiring read
|
||||
|
||||
## 0.20.10
|
||||
|
||||
* `Versions`:
|
||||
* `Kotlin`: `1.9.20-RC` -> `1.9.20-RC1`
|
||||
* `KSLog`: `1.2.1` -> `1.2.2`
|
||||
* `Compose`: `1.5.10-rc01` -> `1.5.10-rc02`
|
||||
* `RecyclerView`: `1.3.1` -> `1.3.2`
|
||||
|
||||
## 0.20.9
|
||||
|
||||
* Most of common modules now supports `linuxArm64` target
|
||||
|
@@ -23,6 +23,7 @@ class SmartRWLocker(private val readPermits: Int = Int.MAX_VALUE, writeIsLocked:
|
||||
* Do lock in [readSemaphore] inside of [writeMutex] locking
|
||||
*/
|
||||
suspend fun acquireRead() {
|
||||
_writeMutex.waitUnlock()
|
||||
_readSemaphore.acquire()
|
||||
}
|
||||
|
||||
|
@@ -15,5 +15,5 @@ crypto_js_version=4.1.1
|
||||
# Project data
|
||||
|
||||
group=dev.inmo
|
||||
version=0.20.9
|
||||
android_code_version=215
|
||||
version=0.20.11
|
||||
android_code_version=217
|
||||
|
@@ -1,15 +1,15 @@
|
||||
[versions]
|
||||
|
||||
kt = "1.9.20-RC"
|
||||
kt = "1.9.20"
|
||||
#compose-kotlin = "1.5.10-beta02"
|
||||
kt-serialization = "1.6.0"
|
||||
kt-coroutines = "1.7.3"
|
||||
|
||||
kslog = "1.2.1"
|
||||
kslog = "1.2.2"
|
||||
|
||||
jb-compose = "1.5.10-rc01"
|
||||
jb-exposed = "0.44.0"
|
||||
jb-dokka = "1.9.0"
|
||||
jb-compose = "1.5.10"
|
||||
jb-exposed = "0.44.1"
|
||||
jb-dokka = "1.9.10"
|
||||
|
||||
korlibs = "4.0.10"
|
||||
uuid = "0.8.1"
|
||||
@@ -22,7 +22,7 @@ koin = "3.5.0"
|
||||
|
||||
okio = "3.6.0"
|
||||
|
||||
ksp = "1.9.20-RC-1.0.13"
|
||||
ksp = "1.9.20-1.0.13"
|
||||
kotlin-poet = "1.14.2"
|
||||
|
||||
versions = "0.49.0"
|
||||
@@ -31,7 +31,7 @@ android-gradle = "7.4.2"
|
||||
dexcount = "4.0.0"
|
||||
|
||||
android-coreKtx = "1.12.0"
|
||||
android-recyclerView = "1.3.1"
|
||||
android-recyclerView = "1.3.2"
|
||||
android-appCompat = "1.6.1"
|
||||
android-fragment = "1.6.1"
|
||||
android-espresso = "3.5.1"
|
||||
|
Reference in New Issue
Block a user