This repository has been archived by the owner on Feb 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 734
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1101 from jovfer/feature/rc_1_6_4
RC 1.6.4
- Loading branch information
Showing
48 changed files
with
820 additions
and
839 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
This file was deleted.
Oops, something went wrong.
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,6 +1,6 @@ | ||
{ | ||
"name": "libindy-objc", | ||
"version": "1.6.2", | ||
"version": "1.6.4", | ||
"summary": "Summary TODO.", | ||
"homepage": "TODO", | ||
"license": { | ||
|
@@ -11,7 +11,7 @@ | |
"Daniel Hardman": "[email protected]" | ||
}, | ||
"source": { | ||
"http": "https://repo.sovrin.org/ios/libindy/stable/indy-objc/1.6.2/libindy-objc.zip" | ||
"http": "https://repo.sovrin.org/ios/libindy/stable/indy-objc/1.6.4/libindy-objc.zip" | ||
}, | ||
"platforms": { | ||
"ios": "10.0" | ||
|
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,23 @@ | ||
{ | ||
"name": "libindy", | ||
"version": "1.6.4", | ||
"summary": "Summary TODO.", | ||
"description": "Description TODO.", | ||
"homepage": "TODO", | ||
"license": { | ||
"type": "Apache License 2.0", | ||
"file": "LICENSE" | ||
}, | ||
"authors": { | ||
"Daniel Hardman": "[email protected]" | ||
}, | ||
"platforms": { | ||
"ios": "10.0" | ||
}, | ||
"source": { | ||
"http": "https://repo.sovrin.org/ios/libindy/stable/libindy-core/1.6.4/libindy.tar.gz" | ||
}, | ||
"source_files": "*.h", | ||
"vendored_libraries": "*.a", | ||
"requires_arc": false | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,6 +1,6 @@ | ||
[package] | ||
name = "indy-cli" | ||
version = "1.6.3" | ||
version = "1.6.4" | ||
authors = ["Vyacheslav Gudkov <[email protected]>"] | ||
|
||
[features] | ||
|
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,4 +1,4 @@ | ||
indy-cli (1.6.3) unstable; urgency=medium | ||
indy-cli (1.6.4) unstable; urgency=medium | ||
|
||
[ Hyperledger ] | ||
* Created Indy-Cli |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,6 +1,6 @@ | ||
[package] | ||
name = "indy" | ||
version = "1.6.3" | ||
version = "1.6.4" | ||
authors = [ | ||
"Sergej Pupykin <[email protected]>", | ||
"Vyacheslav Gudkov <[email protected]>", | ||
|
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
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
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,12 +1,8 @@ | ||
libindy (1.6.3) unstable; urgency=medium | ||
libindy (1.6.4) unstable; urgency=medium | ||
|
||
[ Hyperledger ] | ||
|
||
* 1.6.3 | ||
* Performed the following changes related to Libindy Wallet API: | ||
* Added separate API function `indy_generate_wallet_key` to generate a random wallet master key. | ||
* Updated `key_derivation_method` parameter of wallet `credentials` to accept the addition type - `RAW`. | ||
By using this type, the result of `indy_generate_wallet_key` can be passed as a wallet master key (key derivation will be skipped). | ||
* Updated Indy CLI wallet related commands to accept the addition parameter `key_derivation_method`. | ||
* Updated `data` parameter of `indy_build_node_request` API function to accept `blskey_pop` (Proof of possession for BLS key). | ||
* Bugfixes | ||
* 1.6.4 | ||
* Early API types checks | ||
* Workaround for OS permissions on Android | ||
* Fix Android build ARMv7 |
Oops, something went wrong.