From 9a8e555905c45abf795b7b60d12117b592d6fb32 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 8 Mar 2023 17:16:00 +0100 Subject: [PATCH] Hotfix v0.6.2 (#1140) --- CHANGELOG.md | 8 ++++++++ bindings/stronghold-nodejs/Cargo.toml | 6 +++--- bindings/wasm/Cargo.toml | 2 +- identity_account/Cargo.toml | 14 +++++++------- identity_account_storage/Cargo.toml | 8 ++++---- identity_core/Cargo.toml | 4 ++-- identity_credential/Cargo.toml | 6 +++--- identity_did/Cargo.toml | 4 ++-- identity_diff/Cargo.toml | 4 ++-- identity_diff/derive/Cargo.toml | 2 +- identity_iota/Cargo.toml | 16 ++++++++-------- identity_iota_client/Cargo.toml | 10 +++++----- identity_iota_core/Cargo.toml | 6 +++--- 13 files changed, 49 insertions(+), 41 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 55743d3d41..89cbcf9835 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [v0.6.2](https://github.com/iotaledger/identity.rs/tree/v0.6.2) (2023-03-08) + +[Full Changelog](https://github.com/iotaledger/identity.rs/compare/v0.6.1...v0.6.2) + +### Patch + +- Pin `form_urlencoded` [\#1138](https://github.com/iotaledger/identity.rs/pull/1138) + ## [v0.6.1](https://github.com/iotaledger/identity.rs/tree/v0.6.1) (2022-06-30) [Full Changelog](https://github.com/iotaledger/identity.rs/compare/v0.6.0...v0.6.1) diff --git a/bindings/stronghold-nodejs/Cargo.toml b/bindings/stronghold-nodejs/Cargo.toml index 0518bc7f42..94d3cfca74 100644 --- a/bindings/stronghold-nodejs/Cargo.toml +++ b/bindings/stronghold-nodejs/Cargo.toml @@ -7,9 +7,9 @@ publish = false crate-type = ["cdylib"] [dependencies] -identity_account_storage = { version = "=0.6.1", path = "../../identity_account_storage", default-features = false, features = ["stronghold", "send-sync-storage", "encryption"] } -identity_core = { version = "=0.6.1", path = "../../identity_core", default-features = false } -identity_iota_core = { version = "=0.6.1", path = "../../identity_iota_core", default-features = false } +identity_account_storage = { version = "0.6.1", path = "../../identity_account_storage", default-features = false, features = ["stronghold", "send-sync-storage", "encryption"] } +identity_core = { version = "0.6.1", path = "../../identity_core", default-features = false } +identity_iota_core = { version = "0.6.1", path = "../../identity_iota_core", default-features = false } napi = { version = "2.4.3", default-features = false, features = ["napi4", "tokio_rt", "serde-json"] } napi-derive = { version = "2.4.1", default-features = false, features = ["compat-mode", "full"] } serde = { version = "1.0", default-features = false, features = ["derive"] } diff --git a/bindings/wasm/Cargo.toml b/bindings/wasm/Cargo.toml index c69fa70169..e8b7361edf 100644 --- a/bindings/wasm/Cargo.toml +++ b/bindings/wasm/Cargo.toml @@ -28,7 +28,7 @@ wasm-bindgen = { version = "0.2", features = ["serde-serialize"] } wasm-bindgen-futures = { version = "0.4", default-features = false } [dependencies.identity_iota] -version = "=0.6.1" +version = "0.6.1" path = "../../identity_iota" default-features = false features = ["account", "storage-test-suite", "unstable-encryption", "revocation-bitmap"] diff --git a/identity_account/Cargo.toml b/identity_account/Cargo.toml index a2a654a95a..23739c2fd3 100644 --- a/identity_account/Cargo.toml +++ b/identity_account/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_account" -version = "0.6.1" +version = "0.6.2" authors = ["IOTA Stiftung"] edition = "2021" homepage = "https://www.iota.org" @@ -11,12 +11,12 @@ repository = "https://github.com/iotaledger/identity.rs" description = "High-level interface for managing IOTA DID Documents." [dependencies] -identity_account_storage = { version = "=0.6.1", path = "../identity_account_storage", default-features = false } -identity_core = { version = "=0.6.1", path = "../identity_core", default-features = false } -identity_credential = { version = "=0.6.1", path = "../identity_credential", default-features = false } -identity_did = { version = "=0.6.1", path = "../identity_did", default-features = false } -identity_iota_client = { version = "=0.6.1", path = "../identity_iota_client", default-features = false } -identity_iota_core = { version = "=0.6.1", path = "../identity_iota_core", default-features = false } +identity_account_storage = { version = "=0.6.2", path = "../identity_account_storage", default-features = false } +identity_core = { version = "=0.6.2", path = "../identity_core", default-features = false } +identity_credential = { version = "=0.6.2", path = "../identity_credential", default-features = false } +identity_did = { version = "=0.6.2", path = "../identity_did", default-features = false } +identity_iota_client = { version = "=0.6.2", path = "../identity_iota_client", default-features = false } +identity_iota_core = { version = "=0.6.2", path = "../identity_iota_core", default-features = false } log = { version = "0.4", default-features = false } paste = { version = "1.0" } rand = { version = "0.8", default-features = false, features = ["std", "std_rng"] } diff --git a/identity_account_storage/Cargo.toml b/identity_account_storage/Cargo.toml index c16528048d..ab3fedbb81 100644 --- a/identity_account_storage/Cargo.toml +++ b/identity_account_storage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_account_storage" -version = "0.6.1" +version = "0.6.2" authors = ["IOTA Stiftung"] edition = "2021" homepage = "https://www.iota.org" @@ -16,9 +16,9 @@ async-trait = { version = "0.1", default-features = false } function_name = { version = "0.2", default-features = false, optional = true } futures = { version = "0.3", optional = true } hashbrown = { version = "0.11", features = ["serde"] } -identity_core = { version = "=0.6.1", path = "../identity_core", default-features = false } -identity_did = { version = "=0.6.1", path = "../identity_did", default-features = false } -identity_iota_core = { version = "=0.6.1", path = "../identity_iota_core", default-features = false } +identity_core = { version = "=0.6.2", path = "../identity_core", default-features = false } +identity_did = { version = "=0.6.2", path = "../identity_did", default-features = false } +identity_iota_core = { version = "=0.6.2", path = "../identity_iota_core", default-features = false } iota-crypto = { version = ">=0.7, <0.10", default-features = false, features = ["hmac", "pbkdf", "sha", "std", "aes", "aes-kw"] } iota_stronghold = { version = "0.6.4", default-features = false, features = ["std"], optional = true } once_cell = { version = "1.7", default-features = false, features = ["std"], optional = true } diff --git a/identity_core/Cargo.toml b/identity_core/Cargo.toml index 80fa484cf7..ac7eb77083 100644 --- a/identity_core/Cargo.toml +++ b/identity_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_core" -version = "0.6.1" +version = "0.6.2" authors = ["IOTA Stiftung"] edition = "2021" homepage = "https://www.iota.org" @@ -11,7 +11,7 @@ repository = "https://github.com/iotaledger/identity.rs" description = "The core traits and types for the identity-rs library." [dependencies] -identity-diff = { version = "=0.6.1", path = "../identity_diff", default-features = false } +identity-diff = { version = "=0.6.2", path = "../identity_diff", default-features = false } multibase = { version = "0.9", default-features = false, features = ["std"] } serde = { version = "1.0", default-features = false, features = ["std", "derive"] } serde_jcs = { version = "0.1", default-features = false } diff --git a/identity_credential/Cargo.toml b/identity_credential/Cargo.toml index 18e87ac477..1d3251c72e 100644 --- a/identity_credential/Cargo.toml +++ b/identity_credential/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_credential" -version = "0.6.1" +version = "0.6.2" authors = ["IOTA Stiftung"] edition = "2021" homepage = "https://www.iota.org" @@ -11,8 +11,8 @@ repository = "https://github.com/iotaledger/identity.rs" description = "An implementation of the Verifiable Credentials standard." [dependencies] -identity_core = { version = "=0.6.1", path = "../identity_core", default-features = false } -identity_did = { version = "=0.6.1", path = "../identity_did", default-features = false } +identity_core = { version = "=0.6.2", path = "../identity_core", default-features = false } +identity_did = { version = "=0.6.2", path = "../identity_did", default-features = false } lazy_static = { version = "1.4", default-features = false } serde = { version = "1.0", default-features = false, features = ["std", "derive"] } strum = { version = "0.24.0", default-features = false, features = ["std", "derive"] } diff --git a/identity_did/Cargo.toml b/identity_did/Cargo.toml index 16106cb533..ddc3266fd1 100644 --- a/identity_did/Cargo.toml +++ b/identity_did/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_did" -version = "0.6.1" +version = "0.6.2" authors = ["IOTA Stiftung"] edition = "2021" homepage = "https://www.iota.org" @@ -15,7 +15,7 @@ dataurl = { version = "0.1.2", default-features = false, optional = true } did_url = { version = "0.1", default-features = false, features = ["std", "serde"] } flate2 = { version = "1.0.23", default-features = false, features = ["rust_backend"], optional = true } form_urlencoded = { version = "=1.1.0" } -identity_core = { version = "=0.6.1", path = "../identity_core" } +identity_core = { version = "=0.6.2", path = "../identity_core" } indexmap = { version = "1.7", default-features = false, features = ["std", "serde-1"] } roaring = { version = "0.9.0", default-features = false, optional = true } serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] } diff --git a/identity_diff/Cargo.toml b/identity_diff/Cargo.toml index a5c988ba78..f66ee80b06 100644 --- a/identity_diff/Cargo.toml +++ b/identity_diff/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity-diff" -version = "0.6.1" +version = "0.6.2" authors = ["IOTA Stiftung"] edition = "2021" homepage = "https://www.iota.org" @@ -11,7 +11,7 @@ repository = "https://github.com/iotaledger/identity.rs" description = "`Diff` trait to compute and merge data structure differences." [dependencies] -identity-diff-derive = { version = "=0.6.1", path = "derive", optional = true } +identity-diff-derive = { version = "=0.6.2", path = "derive", optional = true } serde = { version = "1.0", features = ["derive"] } serde_json = { version = "1.0" } strum = { version = "0.24.0", default-features = false, features = ["std", "derive"] } diff --git a/identity_diff/derive/Cargo.toml b/identity_diff/derive/Cargo.toml index 474ae0194b..b80b9afba2 100644 --- a/identity_diff/derive/Cargo.toml +++ b/identity_diff/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity-diff-derive" -version = "0.6.1" +version = "0.6.2" authors = ["IOTA Stiftung"] edition = "2021" homepage = "https://www.iota.org" diff --git a/identity_iota/Cargo.toml b/identity_iota/Cargo.toml index 81ad373efb..a903a00ee4 100644 --- a/identity_iota/Cargo.toml +++ b/identity_iota/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_iota" -version = "0.6.1" +version = "0.6.2" authors = ["IOTA Stiftung"] edition = "2021" homepage = "https://www.iota.org" @@ -13,13 +13,13 @@ description = "Framework for Self-Sovereign Identity with IOTA DID." [dependencies] # identity_comm = { version = "=0.5.0-dev.4", path = "../identity_comm", optional = true } -identity_account = { version = "=0.6.1", path = "../identity_account", default-features = false, optional = true } -identity_account_storage = { version = "=0.6.1", path = "../identity_account_storage", default-features = false, optional = true } -identity_core = { version = "=0.6.1", path = "../identity_core", default-features = false } -identity_credential = { version = "=0.6.1", path = "../identity_credential", default-features = false } -identity_did = { version = "=0.6.1", path = "../identity_did", default-features = false } -identity_iota_client = { version = "=0.6.1", path = "../identity_iota_client", default-features = false } -identity_iota_core = { version = "=0.6.1", path = "../identity_iota_core", default-features = false } +identity_account = { version = "=0.6.2", path = "../identity_account", default-features = false, optional = true } +identity_account_storage = { version = "=0.6.2", path = "../identity_account_storage", default-features = false, optional = true } +identity_core = { version = "=0.6.2", path = "../identity_core", default-features = false } +identity_credential = { version = "=0.6.2", path = "../identity_credential", default-features = false } +identity_did = { version = "=0.6.2", path = "../identity_did", default-features = false } +identity_iota_client = { version = "=0.6.2", path = "../identity_iota_client", default-features = false } +identity_iota_core = { version = "=0.6.2", path = "../identity_iota_core", default-features = false } [dev-dependencies] criterion = { version = "0.3" } diff --git a/identity_iota_client/Cargo.toml b/identity_iota_client/Cargo.toml index aa6522f614..9b647530c5 100644 --- a/identity_iota_client/Cargo.toml +++ b/identity_iota_client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_iota_client" -version = "0.6.1" +version = "0.6.2" authors = ["IOTA Stiftung"] edition = "2021" homepage = "https://www.iota.org" @@ -16,10 +16,10 @@ bee-rest-api = { version = "0.1.7", default-features = false } brotli = { version = "3.3", default-features = false, features = ["std"] } form_urlencoded = { version = "=1.1.0" } futures = { version = "0.3" } -identity_core = { version = "=0.6.1", path = "../identity_core", default-features = false } -identity_credential = { version = "=0.6.1", path = "../identity_credential" } -identity_did = { version = "=0.6.1", path = "../identity_did", default-features = false } -identity_iota_core = { version = "=0.6.1", path = "../identity_iota_core", default-features = false } +identity_core = { version = "=0.6.2", path = "../identity_core", default-features = false } +identity_credential = { version = "=0.6.2", path = "../identity_credential" } +identity_did = { version = "=0.6.2", path = "../identity_did", default-features = false } +identity_iota_core = { version = "=0.6.2", path = "../identity_iota_core", default-features = false } itertools = { version = "0.10" } lazy_static = { version = "1.4", default-features = false } log = { version = "0.4", default-features = false } diff --git a/identity_iota_core/Cargo.toml b/identity_iota_core/Cargo.toml index 604a364869..99f5737cd8 100644 --- a/identity_iota_core/Cargo.toml +++ b/identity_iota_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_iota_core" -version = "0.6.1" +version = "0.6.2" authors = ["IOTA Stiftung"] edition = "2021" homepage = "https://www.iota.org" @@ -12,8 +12,8 @@ description = "Core data structures for the IOTA DID Method." [dependencies] bee-message = { version = "0.1.6", default-features = false, features = ["serde"] } -identity_core = { version = "=0.6.1", path = "../identity_core", default-features = false } -identity_did = { version = "=0.6.1", path = "../identity_did", default-features = false } +identity_core = { version = "=0.6.2", path = "../identity_core", default-features = false } +identity_did = { version = "=0.6.2", path = "../identity_did", default-features = false } lazy_static = { version = "1.4", default-features = false } serde = { version = "1.0", default-features = false, features = ["std", "derive"] } strum = { version = "0.24.0", default-features = false, features = ["std", "derive"] }