This commit is contained in:
Ugljesa Jovanovic 2021-05-28 10:51:07 +02:00
parent 23c4a6f2e2
commit e078cf0e8c
No known key found for this signature in database
GPG Key ID: 178E6DFCECCB0E0F
3 changed files with 9 additions and 6 deletions

View File

@ -1,7 +1,10 @@
## Descriptive changelog ## Descriptive changelog
(All dates are DD.MM.YYYY) (All dates are DD.MM.YYYY)
#### 0.8.3-SNAPSHOT #### 0.8.4-SNAPSHOT
#### 0.8.3 - 28.5.2021
- Built with kotlin 1.5.10
- Fixed loading but not initializing libsodium on js and jvm - Fixed loading but not initializing libsodium on js and jvm
- Changed subkey id to UInt from Int, limited by JS api - Changed subkey id to UInt from Int, limited by JS api
- Updated libsodium to latest master 710b2d3963347017ba (potentially will be switched to stable branch) - Updated libsodium to latest master 710b2d3963347017ba (potentially will be switched to stable branch)

View File

@ -31,7 +31,7 @@ repositories {
} }
dependencies { dependencies {
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.32") implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.10")
implementation("com.android.tools.build:gradle:4.0.2") implementation("com.android.tools.build:gradle:4.0.2")
} }

View File

@ -15,10 +15,10 @@
*/ */
object Versions { object Versions {
val kotlinCoroutines = "1.4.2" val kotlinCoroutines = "1.5.0-native-mt"
val kotlin = "1.4.30" val kotlin = "1.5.10"
val kotlinSerialization = "1.0.1" val kotlinSerialization = "1.0.1"
val kotlinSerializationPlugin = "1.4.10" val kotlinSerializationPlugin = "1.5.10"
val atomicfu = "0.14.3-M2-2-SNAPSHOT" //NOTE: my linux arm32 and arm64 build val atomicfu = "0.14.3-M2-2-SNAPSHOT" //NOTE: my linux arm32 and arm64 build
val nodePlugin = "1.3.0" val nodePlugin = "1.3.0"
val dokkaPlugin = "1.4.0-rc" val dokkaPlugin = "1.4.0-rc"
@ -41,7 +41,7 @@ object Versions {
object ReleaseInfo { object ReleaseInfo {
val group = "com.ionspin.kotlin" val group = "com.ionspin.kotlin"
val version = "0.1.0-SNAPSHOT" val version = "0.1.0-SNAPSHOT"
val bindingsVersion = "0.8.3-SNAPSHOT" val bindingsVersion = "0.8.4-SNAPSHOT"
} }
object Deps { object Deps {