-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(release): cut wallet sdk version 1.0.0
# 1.0.0 (2024-01-19) ### Bug Fixes * code linting errors ([02f921d](02f921d)) * current regex does not supports multiple services within a DID ([b5ce2ec](b5ce2ec)) * fix linting ([6ccce04](6ccce04)) * fixing code lint ([b8e8bf3](b8e8bf3)) * gradle publish url ([5b94b6a](5b94b6a)) * use correct base encoding with JWK ([#6](#6)) ([fd26f49](fd26f49)) * Work in progress fixes. ([ce7f6d8](ce7f6d8)) ### Features * DIDPeer implementation ([1e93383](1e93383))
- Loading branch information
Showing
2 changed files
with
26 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |