From 5f6225be3266ceec7b13d6d4bec7fb20c891c2ed Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 28 Oct 2022 10:22:00 +0200 Subject: [PATCH] Release v0.7.0-alpha.3 (#1063) * changelog and versions --- CHANGELOG.md | 9 ++++++++- bindings/stronghold-nodejs/Cargo.lock | 8 ++++---- bindings/stronghold-nodejs/Cargo.toml | 4 ++-- bindings/wasm/Cargo.toml | 2 +- examples/Cargo.toml | 2 +- examples_legacy/Cargo.toml | 2 +- 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 | 12 ++++++------ identity_iota_core/Cargo.toml | 8 ++++---- identity_resolver/Cargo.toml | 10 +++++----- 14 files changed, 42 insertions(+), 35 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0fa1751321..3ade69f9fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,16 @@ # Changelog +## [v0.7.0-alpha.3](https://github.com/iotaledger/identity.rs/tree/v0.7.0-alpha.3) (2022-09-30) + +[Full Changelog](https://github.com/iotaledger/identity.rs/compare/v0.7.0-alpha.2...v0.7.0-alpha.3) + +### Changed + +- Update iota client 2.0.1 rc.3 [\#1062](https://github.com/iotaledger/identity.rs/pull/1062) ## [v0.7.0-alpha.2](https://github.com/iotaledger/identity.rs/tree/v0.7.0-alpha.2) (2022-09-30) [Full Changelog](https://github.com/iotaledger/identity.rs/compare/v0.7.0-alpha.1...v0.7.0-alpha.2) - + ### Changed - Use Bech32-encoded state controller and governor addresses [\#1044](https://github.com/iotaledger/identity.rs/pull/1044) diff --git a/bindings/stronghold-nodejs/Cargo.lock b/bindings/stronghold-nodejs/Cargo.lock index 94fffbfea1..9ec8eeb7dc 100644 --- a/bindings/stronghold-nodejs/Cargo.lock +++ b/bindings/stronghold-nodejs/Cargo.lock @@ -715,7 +715,7 @@ dependencies = [ [[package]] name = "identity-diff" -version = "0.7.0-alpha.2" +version = "0.7.0-alpha.3" dependencies = [ "serde", "serde_json", @@ -725,7 +725,7 @@ dependencies = [ [[package]] name = "identity-stronghold-nodejs" -version = "0.7.0-alpha.1" +version = "0.7.0-alpha.2" dependencies = [ "identity_account_storage", "identity_core", @@ -762,7 +762,7 @@ dependencies = [ [[package]] name = "identity_core" -version = "0.7.0-alpha.2" +version = "0.7.0-alpha.3" dependencies = [ "identity-diff", "iota-crypto 0.12.1", @@ -780,7 +780,7 @@ dependencies = [ [[package]] name = "identity_did" -version = "0.7.0-alpha.2" +version = "0.7.0-alpha.3" dependencies = [ "did_url", "form_urlencoded", diff --git a/bindings/stronghold-nodejs/Cargo.toml b/bindings/stronghold-nodejs/Cargo.toml index 179627487f..991ee159b0 100644 --- a/bindings/stronghold-nodejs/Cargo.toml +++ b/bindings/stronghold-nodejs/Cargo.toml @@ -8,8 +8,8 @@ crate-type = ["cdylib"] [dependencies] identity_account_storage = { version = "0.7.0-alpha.1", path = "../../identity_account_storage", default-features = false, features = ["stronghold", "send-sync-storage", "encryption"] } -identity_core = { version = "0.7.0-alpha.2", path = "../../identity_core", default-features = false } -identity_did = { version = "0.7.0-alpha.2", path = "../../identity_did", default-features = false } +identity_core = { version = "0.7.0-alpha.3", path = "../../identity_core", default-features = false } +identity_did = { version = "0.7.0-alpha.3", path = "../../identity_did", default-features = false } identity_iota_core_legacy = { version = "0.7.0-alpha.1", path = "../../identity_iota_core_legacy", 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"] } diff --git a/bindings/wasm/Cargo.toml b/bindings/wasm/Cargo.toml index 753cc18342..c8439f3bac 100644 --- a/bindings/wasm/Cargo.toml +++ b/bindings/wasm/Cargo.toml @@ -29,7 +29,7 @@ wasm-bindgen = { version = "0.2.83", features = ["serde-serialize"] } wasm-bindgen-futures = { version = "0.4", default-features = false } [dependencies.identity_iota] -version = "0.7.0-alpha.2" +version = "0.7.0-alpha.3" path = "../../identity_iota" default-features = false features = ["client", "revocation-bitmap", "resolver"] diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 276614e7c0..c0cb95be36 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "examples" -version = "0.7.0-alpha.2" +version = "0.7.0-alpha.3" authors = ["IOTA Stiftung"] edition = "2021" publish = false diff --git a/examples_legacy/Cargo.toml b/examples_legacy/Cargo.toml index 14aa60a06e..5e9aef6c5d 100644 --- a/examples_legacy/Cargo.toml +++ b/examples_legacy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "examples_legacy" -version = "0.7.0-alpha.2" +version = "0.7.0-alpha.3" edition = "2021" publish = false diff --git a/identity_core/Cargo.toml b/identity_core/Cargo.toml index 0571950a3c..ff66a94b72 100644 --- a/identity_core/Cargo.toml +++ b/identity_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_core" -version = "0.7.0-alpha.2" +version = "0.7.0-alpha.3" 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.7.0-alpha.2", path = "../identity_diff", default-features = false } +identity-diff = { version = "=0.7.0-alpha.3", 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 59f4fbffb5..046ffb5c63 100644 --- a/identity_credential/Cargo.toml +++ b/identity_credential/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_credential" -version = "0.7.0-alpha.2" +version = "0.7.0-alpha.3" authors = ["IOTA Stiftung"] edition = "2021" homepage = "https://www.iota.org" @@ -13,8 +13,8 @@ description = "An implementation of the Verifiable Credentials standard." [dependencies] erased-serde = { version = "0.3.21", default-features = false, features = ["std"], optional = true } -identity_core = { version = "=0.7.0-alpha.2", path = "../identity_core", default-features = false } -identity_did = { version = "=0.7.0-alpha.2", path = "../identity_did", default-features = false } +identity_core = { version = "=0.7.0-alpha.3", path = "../identity_core", default-features = false } +identity_did = { version = "=0.7.0-alpha.3", path = "../identity_did", default-features = false } itertools = { version = "0.10", default-features = false, features = ["use_std"], optional = true } lazy_static = { version = "1.4", default-features = false } serde = { version = "1.0", default-features = false, features = ["std", "derive"] } diff --git a/identity_did/Cargo.toml b/identity_did/Cargo.toml index df990e9cc2..500439250c 100644 --- a/identity_did/Cargo.toml +++ b/identity_did/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_did" -version = "0.7.0-alpha.2" +version = "0.7.0-alpha.3" 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.0.1", default-features = false } -identity_core = { version = "=0.7.0-alpha.2", path = "../identity_core" } +identity_core = { version = "=0.7.0-alpha.3", 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 9aa7d727b4..17c0a80abf 100644 --- a/identity_diff/Cargo.toml +++ b/identity_diff/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity-diff" -version = "0.7.0-alpha.2" +version = "0.7.0-alpha.3" 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.7.0-alpha.2", path = "derive", optional = true } +identity-diff-derive = { version = "=0.7.0-alpha.3", 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 16247d089b..d0a2e95346 100644 --- a/identity_diff/derive/Cargo.toml +++ b/identity_diff/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity-diff-derive" -version = "0.7.0-alpha.2" +version = "0.7.0-alpha.3" authors = ["IOTA Stiftung"] edition = "2021" homepage = "https://www.iota.org" diff --git a/identity_iota/Cargo.toml b/identity_iota/Cargo.toml index f4ffee4cbf..c196d2c52e 100644 --- a/identity_iota/Cargo.toml +++ b/identity_iota/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_iota" -version = "0.7.0-alpha.2" +version = "0.7.0-alpha.3" authors = ["IOTA Stiftung"] edition = "2021" homepage = "https://www.iota.org" @@ -12,11 +12,11 @@ rust-version = "1.62" description = "Framework for Self-Sovereign Identity with IOTA DID." [dependencies] -identity_core = { version = "=0.7.0-alpha.2", path = "../identity_core", default-features = false } -identity_credential = { version = "=0.7.0-alpha.2", path = "../identity_credential", features = ["validator"], default-features = false } -identity_did = { version = "=0.7.0-alpha.2", path = "../identity_did", default-features = false } -identity_iota_core = { version = "=0.7.0-alpha.2", path = "../identity_iota_core", default-features = false } -identity_resolver = { version = "=0.7.0-alpha.2", path = "../identity_resolver", default-features = false, optional = true } +identity_core = { version = "=0.7.0-alpha.3", path = "../identity_core", default-features = false } +identity_credential = { version = "=0.7.0-alpha.3", path = "../identity_credential", features = ["validator"], default-features = false } +identity_did = { version = "=0.7.0-alpha.3", path = "../identity_did", default-features = false } +identity_iota_core = { version = "=0.7.0-alpha.3", path = "../identity_iota_core", default-features = false } +identity_resolver = { version = "=0.7.0-alpha.3", path = "../identity_resolver", default-features = false, optional = true } [dev-dependencies] anyhow = "1.0.64" diff --git a/identity_iota_core/Cargo.toml b/identity_iota_core/Cargo.toml index e5e1ac902b..c3ed7cd8dc 100644 --- a/identity_iota_core/Cargo.toml +++ b/identity_iota_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_iota_core" -version = "0.7.0-alpha.2" +version = "0.7.0-alpha.3" authors = ["IOTA Stiftung"] edition = "2021" homepage = "https://www.iota.org" @@ -12,9 +12,9 @@ rust-version = "1.62" description = "An IOTA Ledger integration for the IOTA DID Method." [dependencies] -identity_core = { version = "=0.7.0-alpha.2", path = "../identity_core", default-features = false } -identity_credential = { version = "=0.7.0-alpha.2", path = "../identity_credential", default-features = false, features = ["validator"] } -identity_did = { version = "=0.7.0-alpha.2", path = "../identity_did", default-features = false } +identity_core = { version = "=0.7.0-alpha.3", path = "../identity_core", default-features = false } +identity_credential = { version = "=0.7.0-alpha.3", path = "../identity_credential", default-features = false, features = ["validator"] } +identity_did = { version = "=0.7.0-alpha.3", path = "../identity_did", default-features = false } iota-types = { version = "1.0.0-rc.1", default-features = false, features = ["block", "std"], optional = true } async-trait = { version = "0.1.56", default-features = false, optional = true } diff --git a/identity_resolver/Cargo.toml b/identity_resolver/Cargo.toml index f2b7a51952..d9a1b445f4 100644 --- a/identity_resolver/Cargo.toml +++ b/identity_resolver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "identity_resolver" -version = "0.7.0-alpha.2" +version = "0.7.0-alpha.3" authors = ["IOTA Stiftung"] edition = "2021" homepage = "https://www.iota.org" @@ -15,15 +15,15 @@ description = "DID Resolution utilities for the identity.rs library." # This is currently necessary for the ResolutionHandler trait. This can be made an optional dependency if alternative ways of attaching handlers are introduced. async-trait = { version = "0.1", default-features = false } futures = { version = "0.3" } -identity_core = { version = "=0.7.0-alpha.2", path = "../identity_core", default-features = false } -identity_credential = { version = "=0.7.0-alpha.2", path = "../identity_credential", default-features = false, features = ["validator"] } -identity_did = { version = "=0.7.0-alpha.2", path = "../identity_did", default-features = false } +identity_core = { version = "=0.7.0-alpha.3", path = "../identity_core", default-features = false } +identity_credential = { version = "=0.7.0-alpha.3", path = "../identity_credential", default-features = false, features = ["validator"] } +identity_did = { version = "=0.7.0-alpha.3", path = "../identity_did", default-features = false } serde = { version = "1.0", default-features = false, features = ["std", "derive"] } strum = { version = "0.21", features = ["derive"] } thiserror = { version = "1.0", default-features = false } [dependencies.identity_iota_core] -version = "=0.7.0-alpha.2" +version = "=0.7.0-alpha.3" path = "../identity_iota_core" default-features = false features = ["send-sync-client-ext", "iota-client"]