From 5b22ba0078f7df6797d611c48c25a8eec146c3b0 Mon Sep 17 00:00:00 2001 From: atala-dev Date: Fri, 19 Jan 2024 12:21:15 +0000 Subject: [PATCH] chore(release): cut wallet sdk version 1.0.0 # 1.0.0 (2024-01-19) ### Bug Fixes * code linting errors ([02f921d](https://github.com/input-output-hk/atala-prism-didcomm-kmm/commit/02f921d667f394d1361e6f18b3b783319603dbfd)) * current regex does not supports multiple services within a DID ([b5ce2ec](https://github.com/input-output-hk/atala-prism-didcomm-kmm/commit/b5ce2ec53ea24104ef5002c4dab9e4c622de3ca7)) * fix linting ([6ccce04](https://github.com/input-output-hk/atala-prism-didcomm-kmm/commit/6ccce0494a82d1111b1bbd6c12376d8ea7ff13b8)) * fixing code lint ([b8e8bf3](https://github.com/input-output-hk/atala-prism-didcomm-kmm/commit/b8e8bf330e4a2ae7eed8612899221525424b67f1)) * gradle publish url ([5b94b6a](https://github.com/input-output-hk/atala-prism-didcomm-kmm/commit/5b94b6a512aa920278e71d46d25f8efcef6599b0)) * use correct base encoding with JWK ([#6](https://github.com/input-output-hk/atala-prism-didcomm-kmm/issues/6)) ([fd26f49](https://github.com/input-output-hk/atala-prism-didcomm-kmm/commit/fd26f49d5346c410329138318bb60b30073b227f)) * Work in progress fixes. ([ce7f6d8](https://github.com/input-output-hk/atala-prism-didcomm-kmm/commit/ce7f6d840ee6165ea2bb67aaf1d2e652907578d0)) ### Features * DIDPeer implementation ([1e93383](https://github.com/input-output-hk/atala-prism-didcomm-kmm/commit/1e93383b48d4b381c94ed26a76d74a752723646e)) --- CHANGELOG.md | 17 +++++++++++++++++ gradle.properties | 21 +++++++++------------ 2 files changed, 26 insertions(+), 12 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..bfc1b1a --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,17 @@ +# 1.0.0 (2024-01-19) + + +### Bug Fixes + +* code linting errors ([02f921d](https://github.com/input-output-hk/atala-prism-didcomm-kmm/commit/02f921d667f394d1361e6f18b3b783319603dbfd)) +* current regex does not supports multiple services within a DID ([b5ce2ec](https://github.com/input-output-hk/atala-prism-didcomm-kmm/commit/b5ce2ec53ea24104ef5002c4dab9e4c622de3ca7)) +* fix linting ([6ccce04](https://github.com/input-output-hk/atala-prism-didcomm-kmm/commit/6ccce0494a82d1111b1bbd6c12376d8ea7ff13b8)) +* fixing code lint ([b8e8bf3](https://github.com/input-output-hk/atala-prism-didcomm-kmm/commit/b8e8bf330e4a2ae7eed8612899221525424b67f1)) +* gradle publish url ([5b94b6a](https://github.com/input-output-hk/atala-prism-didcomm-kmm/commit/5b94b6a512aa920278e71d46d25f8efcef6599b0)) +* use correct base encoding with JWK ([#6](https://github.com/input-output-hk/atala-prism-didcomm-kmm/issues/6)) ([fd26f49](https://github.com/input-output-hk/atala-prism-didcomm-kmm/commit/fd26f49d5346c410329138318bb60b30073b227f)) +* Work in progress fixes. ([ce7f6d8](https://github.com/input-output-hk/atala-prism-didcomm-kmm/commit/ce7f6d840ee6165ea2bb67aaf1d2e652907578d0)) + + +### Features + +* DIDPeer implementation ([1e93383](https://github.com/input-output-hk/atala-prism-didcomm-kmm/commit/1e93383b48d4b381c94ed26a76d74a752723646e)) diff --git a/gradle.properties b/gradle.properties index 812bffe..377e1bc 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,18 +1,15 @@ -version=1.0.0 +version = 1.0.0 #Gradle -org.gradle.jvmargs=-Xmx3072M -Dkotlin.daemon.jvm.options\="-Xmx3072M" - +org.gradle.jvmargs = -Xmx3072M -Dkotlin.daemon.jvm.options="-Xmx3072M" #Kotlin -kotlin.code.style=official - +kotlin.code.style = official #Android -android.useAndroidX=true - +android.useAndroidX = true #MPP # kotlin.mpp.enableGranularSourceSetsMetadata=true # kotlin.native.enableDependencyPropagation=false -kotlin.mpp.enableCInteropCommonization=true -kotlin.native.cacheKind.iosSimulatorArm64=none -kotlin.native.cacheKind.iosArm64=none -kotlin.native.cacheKind.iosX64=none -kotlin.mpp.androidSourceSetLayoutVersion=2 +kotlin.mpp.enableCInteropCommonization = true +kotlin.native.cacheKind.iosSimulatorArm64 = none +kotlin.native.cacheKind.iosArm64 = none +kotlin.native.cacheKind.iosX64 = none +kotlin.mpp.androidSourceSetLayoutVersion = 2