Skip to content

Commit

Permalink
Release v0.7.0-alpha.6 (#1137)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Mar 3, 2023
1 parent 02e1ca9 commit 0a8dc51
Show file tree
Hide file tree
Showing 15 changed files with 59 additions and 46 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [v0.7.0-alpha.6](https://github.com/iotaledger/identity.rs/tree/v0.7.0-alpha.6) (2023-03-03)

[Full Changelog](https://github.com/iotaledger/identity.rs/compare/v0.7.0-alpha.5...v0.7.0-alpha.6)

### Added
- Implement `JwkStorage` [#1116](https://github.com/iotaledger/identity.rs/pull/1133)
- Add Wasm Bindings for Domain Linkage [#1115](https://github.com/iotaledger/identity.rs/pull/1115)
- Introduce `IToCoreDocument` and document locks in the bindings [#1120](https://github.com/iotaledger/identity.rs/pull/1120)

### Patch

- Pin `form_urlencoded` to `1.1.0` [#1136](https://github.com/iotaledger/identity.rs/pull/1136)

## [v0.7.0-alpha.5](https://github.com/iotaledger/identity.rs/tree/v0.7.0-alpha.5) (2023-02-15)

[Full Changelog](https://github.com/iotaledger/identity.rs/compare/v0.7.0-alpha.4...v0.7.0-alpha.5)
Expand Down
2 changes: 1 addition & 1 deletion bindings/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ wasm-bindgen = { version = "0.2.84", features = ["serde-serialize"] }
wasm-bindgen-futures = { version = "0.4", default-features = false }

[dependencies.identity_iota]
version = "0.7.0-alpha.5"
version = "0.7.0-alpha.6"
path = "../../identity_iota"
default-features = false
features = ["client", "revocation-bitmap", "resolver"]
Expand Down
2 changes: 1 addition & 1 deletion examples/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "examples"
version = "0.7.0-alpha.5"
version = "0.7.0-alpha.6"
authors = ["IOTA Stiftung"]
edition = "2021"
publish = false
Expand Down
4 changes: 2 additions & 2 deletions identity_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "identity_core"
version = "0.7.0-alpha.5"
version = "0.7.0-alpha.6"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
Expand All @@ -12,7 +12,7 @@ rust-version.workspace = true
description = "The core traits and types for the identity-rs library."

[dependencies]
identity-diff = { version = "=0.7.0-alpha.5", path = "../identity_diff", default-features = false }
identity-diff = { version = "=0.7.0-alpha.6", 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 }
Expand Down
10 changes: 5 additions & 5 deletions identity_credential/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "identity_credential"
version = "0.7.0-alpha.5"
version = "0.7.0-alpha.6"
authors = ["IOTA Stiftung"]
edition = "2021"
homepage.workspace = true
Expand All @@ -15,10 +15,10 @@ description = "An implementation of the Verifiable Credentials standard."
dataurl = { version = "0.1.2", default-features = false, optional = true }
flate2 = { version = "1.0.23", default-features = false, features = ["rust_backend"], optional = true }
futures = { version = "0.3", default-features = false, optional = true }
identity_core = { version = "=0.7.0-alpha.5", path = "../identity_core", default-features = false }
identity_did = { version = "=0.7.0-alpha.5", path = "../identity_did", default-features = false }
identity_document = { version = "=0.7.0-alpha.5", path = "../identity_document", default-features = false }
identity_verification = { version = "=0.7.0-alpha.5", path = "../identity_verification", default-features = false }
identity_core = { version = "=0.7.0-alpha.6", path = "../identity_core", default-features = false }
identity_did = { version = "=0.7.0-alpha.6", path = "../identity_did", default-features = false }
identity_document = { version = "=0.7.0-alpha.6", path = "../identity_document", default-features = false }
identity_verification = { version = "=0.7.0-alpha.6", path = "../identity_verification", default-features = false }
indexmap = { version = "1.7", default-features = false, features = ["std", "serde-1"] }
itertools = { version = "0.10", default-features = false, features = ["use_std"], optional = true }
lazy_static = { version = "1.4", default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions identity_did/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "identity_did"
version = "0.7.0-alpha.5"
version = "0.7.0-alpha.6"
authors.workspace = true
edition = "2021"
homepage.workspace = true
Expand All @@ -13,7 +13,7 @@ description = "Agnostic implementation of the Decentralized Identifiers (DID) st
[dependencies]
did_url = { version = "0.1", default-features = false, features = ["std", "serde"] }
form_urlencoded = { version = "=1.1.0" }
identity_core = { version = "=0.7.0-alpha.5", path = "../identity_core" }
identity_core = { version = "=0.7.0-alpha.6", path = "../identity_core" }
serde.workspace = true
strum.workspace = true
thiserror.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions identity_diff/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "identity-diff"
version = "0.7.0-alpha.5"
version = "0.7.0-alpha.6"
authors = ["IOTA Stiftung"]
edition = "2021"
homepage = "https://www.iota.org"
Expand All @@ -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.5", path = "derive", optional = true }
identity-diff-derive = { version = "=0.7.0-alpha.6", path = "derive", optional = true }
serde = { version = "1.0", features = ["derive"] }
serde_json = { workspace = true, features = ["std"] }
strum = { version = "0.24.0", default-features = false, features = ["std", "derive"] }
Expand Down
2 changes: 1 addition & 1 deletion identity_diff/derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "identity-diff-derive"
version = "0.7.0-alpha.5"
version = "0.7.0-alpha.6"
authors = ["IOTA Stiftung"]
edition = "2021"
homepage = "https://www.iota.org"
Expand Down
8 changes: 4 additions & 4 deletions identity_document/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "identity_document"
version = "0.7.0-alpha.5"
version = "0.7.0-alpha.6"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
Expand All @@ -14,9 +14,9 @@ description = "Method-agnostic implementation of the Decentralized Identifiers (
[dependencies]
did_url = { version = "0.1", default-features = false, features = ["std", "serde"] }
form_urlencoded = { version = "=1.1.0" }
identity_core = { version = "=0.7.0-alpha.5", path = "../identity_core" }
identity_did = { version = "=0.7.0-alpha.5", path = "../identity_did" }
identity_verification = { version = "=0.7.0-alpha.5", path = "../identity_verification", default-features = false }
identity_core = { version = "=0.7.0-alpha.6", path = "../identity_core" }
identity_did = { version = "=0.7.0-alpha.6", path = "../identity_did" }
identity_verification = { version = "=0.7.0-alpha.6", path = "../identity_verification", default-features = false }
indexmap = { version = "1.7", default-features = false, features = ["std", "serde-1"] }
serde.workspace = true
strum.workspace = true
Expand Down
18 changes: 9 additions & 9 deletions identity_iota/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "identity_iota"
version = "0.7.0-alpha.5"
version = "0.7.0-alpha.6"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
Expand All @@ -12,14 +12,14 @@ rust-version.workspace = true
description = "Framework for Self-Sovereign Identity with IOTA DID."

[dependencies]
identity_core = { version = "=0.7.0-alpha.5", path = "../identity_core", default-features = false }
identity_credential = { version = "=0.7.0-alpha.5", path = "../identity_credential", features = ["validator"], default-features = false }
identity_did = { version = "=0.7.0-alpha.5", path = "../identity_did", default-features = false }
identity_document = { version = "=0.7.0-alpha.5", path = "../identity_document", default-features = false }
identity_iota_core = { version = "=0.7.0-alpha.5", path = "../identity_iota_core", default-features = false }
identity_resolver = { version = "=0.7.0-alpha.5", path = "../identity_resolver", default-features = false, optional = true }
identity_storage = { version = "=0.7.0-alpha.5", path = "../identity_storage", default-features = false }
identity_verification = { version = "=0.7.0-alpha.5", path = "../identity_verification", default-features = false }
identity_core = { version = "=0.7.0-alpha.6", path = "../identity_core", default-features = false }
identity_credential = { version = "=0.7.0-alpha.6", path = "../identity_credential", features = ["validator"], default-features = false }
identity_did = { version = "=0.7.0-alpha.6", path = "../identity_did", default-features = false }
identity_document = { version = "=0.7.0-alpha.6", path = "../identity_document", default-features = false }
identity_iota_core = { version = "=0.7.0-alpha.6", path = "../identity_iota_core", default-features = false }
identity_resolver = { version = "=0.7.0-alpha.6", path = "../identity_resolver", default-features = false, optional = true }
identity_storage = { version = "=0.7.0-alpha.6", path = "../identity_storage", default-features = false }
identity_verification = { version = "=0.7.0-alpha.6", path = "../identity_verification", default-features = false }

[dev-dependencies]
anyhow = "1.0.64"
Expand Down
12 changes: 6 additions & 6 deletions identity_iota_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "identity_iota_core"
version = "0.7.0-alpha.5"
version = "0.7.0-alpha.6"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
Expand All @@ -14,11 +14,11 @@ description = "An IOTA Ledger integration for the IOTA DID Method."
[dependencies]
async-trait = { version = "0.1.56", default-features = false, optional = true }
futures = { version = "0.3" }
identity_core = { version = "=0.7.0-alpha.5", path = "../identity_core", default-features = false }
identity_credential = { version = "=0.7.0-alpha.5", path = "../identity_credential", default-features = false, features = ["validator"] }
identity_did = { version = "=0.7.0-alpha.5", path = "../identity_did", default-features = false }
identity_document = { version = "=0.7.0-alpha.5", path = "../identity_document", default-features = false }
identity_verification = { version = "=0.7.0-alpha.5", path = "../identity_verification", default-features = false }
identity_core = { version = "=0.7.0-alpha.6", path = "../identity_core", default-features = false }
identity_credential = { version = "=0.7.0-alpha.6", path = "../identity_credential", default-features = false, features = ["validator"] }
identity_did = { version = "=0.7.0-alpha.6", path = "../identity_did", default-features = false }
identity_document = { version = "=0.7.0-alpha.6", path = "../identity_document", default-features = false }
identity_verification = { version = "=0.7.0-alpha.6", path = "../identity_verification", default-features = false }
iota-client = { version = "2.0.1-rc.4", default-features = false, features = ["tls"], optional = true }
iota-types = { version = "1.0.0-rc.6", default-features = false, features = ["block", "std"], optional = true }
num-derive = { version = "0.3", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion identity_jose/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "identity_jose"
version = "0.7.0-alpha.5"
version = "0.7.0-alpha.6"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
Expand Down
12 changes: 6 additions & 6 deletions identity_resolver/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "identity_resolver"
version = "0.7.0-alpha.5"
version = "0.7.0-alpha.6"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
Expand All @@ -15,16 +15,16 @@ 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.5", path = "../identity_core", default-features = false }
identity_credential = { version = "=0.7.0-alpha.5", path = "../identity_credential", default-features = false, features = ["validator"] }
identity_did = { version = "=0.7.0-alpha.5", path = "../identity_did", default-features = false }
identity_document = { version = "=0.7.0-alpha.5", path = "../identity_document", default-features = false }
identity_core = { version = "=0.7.0-alpha.6", path = "../identity_core", default-features = false }
identity_credential = { version = "=0.7.0-alpha.6", path = "../identity_credential", default-features = false, features = ["validator"] }
identity_did = { version = "=0.7.0-alpha.6", path = "../identity_did", default-features = false }
identity_document = { version = "=0.7.0-alpha.6", path = "../identity_document", 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.5"
version = "=0.7.0-alpha.6"
path = "../identity_iota_core"
default-features = false
features = ["send-sync-client-ext", "iota-client"]
Expand Down
6 changes: 3 additions & 3 deletions identity_storage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "identity_storage"
version = "0.7.0-alpha.5"
version = "0.7.0-alpha.6"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
Expand All @@ -13,8 +13,8 @@ description = "Abstractions over storage for cryptographic keys used in DID Docu

[dependencies]
async-trait = { version = "0.1.64", default-features = false }
identity_core = { version = "=0.7.0-alpha.5", path = "../identity_core", default-features = false }
identity_jose = { version = "=0.7.0-alpha.5", path = "../identity_jose", default-features = false }
identity_core = { version = "=0.7.0-alpha.6", path = "../identity_core", default-features = false }
identity_jose = { version = "=0.7.0-alpha.6", path = "../identity_jose", default-features = false }
iota-crypto = { version = "0.15", default-features = false, features = ["blake2b", "ed25519", "random"], optional = true }
rand = { version = "0.8.5", default-features = false, features = ["std"], optional = true }
serde.workspace = true
Expand Down
6 changes: 3 additions & 3 deletions identity_verification/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "identity_verification"
version = "0.7.0-alpha.5"
version = "0.7.0-alpha.6"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
Expand All @@ -9,8 +9,8 @@ rust-version.workspace = true
description = "Verification data types and functionality for identity.rs"

[dependencies]
identity_core = { version = "=0.7.0-alpha.5", path = "./../identity_core", default-features = false }
identity_did = { version = "=0.7.0-alpha.5", path = "./../identity_did", default-features = false }
identity_core = { version = "=0.7.0-alpha.6", path = "./../identity_core", default-features = false }
identity_did = { version = "=0.7.0-alpha.6", path = "./../identity_did", default-features = false }
serde.workspace = true
strum.workspace = true
thiserror.workspace = true
Expand Down

0 comments on commit 0a8dc51

Please sign in to comment.