diff --git a/CHANGELOG.md b/CHANGELOG.md index aa48369f1..32be86539 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,26 @@ +# [3.0.0](https://github.com/input-output-hk/atala-prism-wallet-sdk-kmm/compare/v2.6.0...v3.0.0) (2024-03-05) + + +### Bug Fixes + +* adds env var for maven central publication ([#134](https://github.com/input-output-hk/atala-prism-wallet-sdk-kmm/issues/134)) ([d049f35](https://github.com/input-output-hk/atala-prism-wallet-sdk-kmm/commit/d049f35663b1a92cb31857ceea4b882611d0a5db)) +* **DIDCommWrapper:** Crash when body is empty string ([#124](https://github.com/input-output-hk/atala-prism-wallet-sdk-kmm/issues/124)) ([ed537f6](https://github.com/input-output-hk/atala-prism-wallet-sdk-kmm/commit/ed537f6a3a165f06b1fe3c0b919213ddbaa8e9fb)) +* release pipeline variable ([#135](https://github.com/input-output-hk/atala-prism-wallet-sdk-kmm/issues/135)) ([bbc8a38](https://github.com/input-output-hk/atala-prism-wallet-sdk-kmm/commit/bbc8a3833c49d029a9440763b43c1d8957279e3e)) + + +* chore!: update did peer library version (#128) ([ea08251](https://github.com/input-output-hk/atala-prism-wallet-sdk-kmm/commit/ea082513a801e6eb4ac9384b35c074cf34082dbc)), closes [#128](https://github.com/input-output-hk/atala-prism-wallet-sdk-kmm/issues/128) + + +### Features + +* receive and process presentation request ([#120](https://github.com/input-output-hk/atala-prism-wallet-sdk-kmm/issues/120)) ([1194d11](https://github.com/input-output-hk/atala-prism-wallet-sdk-kmm/commit/1194d11b36cab08e5bfa080a60fd2611b6c0ea39)) + + +### BREAKING CHANGES + +* Support OEA 1.26+ due to updates on the PeerDID Specs changes. +Signed-off-by: Ahmed Moussa + # [2.6.0](https://github.com/input-output-hk/atala-prism-wallet-sdk-kmm/compare/v2.5.0...v2.6.0) (2023-11-29) diff --git a/gradle.properties b/gradle.properties index d46532f1d..85c741a20 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -version = 2.6.0 +version = 3.0.0 org.gradle.jvmargs = -Xmx3072M -Dkotlin.daemon.jvm.options="-Xmx3072M" kotlin.code.style = official android.useAndroidX = true diff --git a/tests/end-to-end/build.gradle.kts b/tests/end-to-end/build.gradle.kts index 3ad69f5cf..e346689e9 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.6.0") + testImplementation("io.iohk.atala.prism.walletsdk:atala-prism-sdk:3.0.0") testImplementation("io.iohk.atala.prism:prism-kotlin-client:1.28.0") testImplementation("io.iohk.atala:atala-automation:0.3.2") }