diff --git a/CHANGELOG.md b/CHANGELOG.md index 7afc3b7b6..56e138c3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# [2.4.0](https://github.com/input-output-hk/atala-prism-wallet-sdk-kmm/compare/v2.3.2...v2.4.0) (2023-10-26) + + +### Features + +* anoncreds receive and store ([#91](https://github.com/input-output-hk/atala-prism-wallet-sdk-kmm/issues/91)) ([5a757dd](https://github.com/input-output-hk/atala-prism-wallet-sdk-kmm/commit/5a757dd7add814bdb35901fee1e4d0f9cef3c1ad)) +* cryptographic abstraction and apollo integration ([#100](https://github.com/input-output-hk/atala-prism-wallet-sdk-kmm/issues/100)) ([0549258](https://github.com/input-output-hk/atala-prism-wallet-sdk-kmm/commit/0549258251a69eebc3f032466263575966dbad21)) + ## [2.3.2](https://github.com/input-output-hk/atala-prism-wallet-sdk-kmm/compare/v2.3.1...v2.3.2) (2023-09-19) diff --git a/gradle.properties b/gradle.properties index 7f61f9e59..ae36a60df 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -version = 2.3.2 +version = 2.4.0 org.gradle.jvmargs = -Xmx3072M -Dkotlin.daemon.jvm.options="-Xmx3072M" kotlin.code.style = official android.useAndroidX = true @@ -7,5 +7,5 @@ kotlin.native.cacheKind.iosSimulatorArm64 = none apollo_version = 1.0.2 didpeer_version = 1.0.4-alpha kotlin.mpp.androidSourceSetLayoutVersion = 2 -kotlinx.atomicfu.enableJvmIrTransformation=true -kotlinx.atomicfu.enableJsIrTransformation=true +kotlinx.atomicfu.enableJvmIrTransformation = true +kotlinx.atomicfu.enableJsIrTransformation = true diff --git a/tests/end-to-end/build.gradle.kts b/tests/end-to-end/build.gradle.kts index ea2dec902..517aeca4b 100644 --- a/tests/end-to-end/build.gradle.kts +++ b/tests/end-to-end/build.gradle.kts @@ -29,7 +29,7 @@ repositories { } dependencies { - testImplementation("io.iohk.atala.prism.walletsdk:atala-prism-sdk:2.3.2") + testImplementation("io.iohk.atala.prism.walletsdk:atala-prism-sdk:2.4.0") testImplementation("io.iohk.atala.prism:prism-kotlin-client:1.9.2") testImplementation("io.iohk.atala:atala-automation:0.3.0") }