Version bump
This commit is contained in:
parent
c2eb99adde
commit
ff0ff4f3dc
@ -27,7 +27,7 @@ object Versions {
|
|||||||
val lazySodium = "4.3.1-SNAPSHOT"
|
val lazySodium = "4.3.1-SNAPSHOT"
|
||||||
val jna = "5.5.0"
|
val jna = "5.5.0"
|
||||||
val kotlinPoet = "1.6.0"
|
val kotlinPoet = "1.6.0"
|
||||||
val sharedModule = "0.1.0-SNAPSHOT"
|
val libsodiumBindings = "0.1.1-SNAPSHOT"
|
||||||
val ktor = "1.3.2"
|
val ktor = "1.3.2"
|
||||||
val timber = "4.7.1"
|
val timber = "4.7.1"
|
||||||
val kodeinVersion = "7.1.0"
|
val kodeinVersion = "7.1.0"
|
||||||
@ -39,6 +39,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.1.1-SNAPSHOT"
|
||||||
}
|
}
|
||||||
|
|
||||||
object Deps {
|
object Deps {
|
||||||
@ -56,7 +57,7 @@ object Deps {
|
|||||||
|
|
||||||
val apiProject = ":multiplatform-crypto-api"
|
val apiProject = ":multiplatform-crypto-api"
|
||||||
|
|
||||||
val libsodiumModule = "com.ionspin.kotlin:multiplatform-crypto-libsodium-bindings:${Versions.sharedModule}"
|
val libsodiumBindings = "com.ionspin.kotlin:multiplatform-crypto-libsodium-bindings:${Versions.libsodiumBindings}"
|
||||||
|
|
||||||
val kodein = "org.kodein.di:kodein-di:${Versions.kodeinVersion}"
|
val kodein = "org.kodein.di:kodein-di:${Versions.kodeinVersion}"
|
||||||
}
|
}
|
||||||
|
@ -53,7 +53,7 @@ repositories {
|
|||||||
|
|
||||||
}
|
}
|
||||||
group = ReleaseInfo.group
|
group = ReleaseInfo.group
|
||||||
version = ReleaseInfo.version
|
version = ReleaseInfo.bindingsVersion
|
||||||
|
|
||||||
val ideaActive = isInIdea()
|
val ideaActive = isInIdea()
|
||||||
println("Idea active: $ideaActive")
|
println("Idea active: $ideaActive")
|
||||||
|
@ -120,7 +120,7 @@ kotlin {
|
|||||||
) {
|
) {
|
||||||
binaries.framework {
|
binaries.framework {
|
||||||
baseName = "LibsodiumBindings"
|
baseName = "LibsodiumBindings"
|
||||||
export(Deps.Common.libsodiumModule)
|
export(Deps.Common.libsodiumBindings)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
val mode = System.getenv("CONFIGURATION") ?: "DEBUG"
|
val mode = System.getenv("CONFIGURATION") ?: "DEBUG"
|
||||||
@ -160,7 +160,7 @@ kotlin {
|
|||||||
implementation(kotlin(Deps.Common.test))
|
implementation(kotlin(Deps.Common.test))
|
||||||
implementation(Deps.Common.kotlinBigNum)
|
implementation(Deps.Common.kotlinBigNum)
|
||||||
implementation(Deps.Common.serialization)
|
implementation(Deps.Common.serialization)
|
||||||
api(Deps.Common.libsodiumModule)
|
api(Deps.Common.libsodiumBindings)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
val commonTest by getting {
|
val commonTest by getting {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user