Skip to content

Commit

Permalink
changelog and versions (#1091)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Nov 24, 2022
1 parent c251d90 commit 6f558a9
Show file tree
Hide file tree
Showing 11 changed files with 30 additions and 30 deletions.
2 changes: 1 addition & 1 deletion bindings/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.3"
version = "0.7.0-alpha.4"
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.3"
version = "0.7.0-alpha.4"
authors = ["IOTA Stiftung"]
edition = "2021"
publish = false
Expand Down
6 changes: 3 additions & 3 deletions identity_agent/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "identity_agent"
version = "0.7.0-alpha.1"
version = "0.7.0-alpha.4"
authors = ["IOTA Stiftung"]
edition = "2021"
homepage = "https://www.iota.org"
Expand All @@ -14,7 +14,7 @@ description = "A peer-to-peer communication framework for building SSI agents on
async-trait = { version = "0.1", default-features = false }
dashmap = { version = "5.3", default-features = false }
futures = { version = "0.3", default-features = false }
identity_core = { version = "0.7.0-alpha.1", path = "../identity_core", default-features = false }
identity_core = { version = "=0.7.0-alpha.4", path = "../identity_core", default-features = false }
libp2p = { version = "0.45", default-features = false, features = ["tcp-tokio", "dns-tokio", "websocket", "request-response", "noise", "yamux"] }
log = { version = "0.4", default-features = false }
serde = { version = "1.0", default-features = false, features = ["derive"] }
Expand All @@ -25,7 +25,7 @@ uuid = { version = "0.8", default-features = false, features = ["v4", "serde"] }

[dev-dependencies]
criterion = { version = "0.3", default-features = false, features = ["stable"] }
identity_iota_core = { path = "../identity_iota_core", version = "=0.7.0-alpha.3", default-features = false }
identity_iota_core = { path = "../identity_iota_core", version = "=0.7.0-alpha.4", default-features = false }
pretty_env_logger = { version = "0.4", default-features = false }
rand = "0.8.5"
tokio = { version = "*", default-features = false, features = ["sync", "macros"] }
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.3"
version = "0.7.0-alpha.4"
authors = ["IOTA Stiftung"]
edition = "2021"
homepage = "https://www.iota.org"
Expand All @@ -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.3", path = "../identity_diff", default-features = false }
identity-diff = { version = "=0.7.0-alpha.4", 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
6 changes: 3 additions & 3 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.3"
version = "0.7.0-alpha.4"
authors = ["IOTA Stiftung"]
edition = "2021"
homepage = "https://www.iota.org"
Expand All @@ -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.3", path = "../identity_core", default-features = false }
identity_did = { version = "=0.7.0-alpha.3", path = "../identity_did", default-features = false }
identity_core = { version = "=0.7.0-alpha.4", path = "../identity_core", default-features = false }
identity_did = { version = "=0.7.0-alpha.4", 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"] }
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.3"
version = "0.7.0-alpha.4"
authors = ["IOTA Stiftung"]
edition = "2021"
homepage = "https://www.iota.org"
Expand All @@ -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.3", path = "../identity_core" }
identity_core = { version = "=0.7.0-alpha.4", 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"] }
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.3"
version = "0.7.0-alpha.4"
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.3", path = "derive", optional = true }
identity-diff-derive = { version = "=0.7.0-alpha.4", 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"] }
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.3"
version = "0.7.0-alpha.4"
authors = ["IOTA Stiftung"]
edition = "2021"
homepage = "https://www.iota.org"
Expand Down
12 changes: 6 additions & 6 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.3"
version = "0.7.0-alpha.4"
authors = ["IOTA Stiftung"]
edition = "2021"
homepage = "https://www.iota.org"
Expand All @@ -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.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 }
identity_core = { version = "=0.7.0-alpha.4", path = "../identity_core", default-features = false }
identity_credential = { version = "=0.7.0-alpha.4", path = "../identity_credential", features = ["validator"], default-features = false }
identity_did = { version = "=0.7.0-alpha.4", path = "../identity_did", default-features = false }
identity_iota_core = { version = "=0.7.0-alpha.4", path = "../identity_iota_core", default-features = false }
identity_resolver = { version = "=0.7.0-alpha.4", path = "../identity_resolver", default-features = false, optional = true }

[dev-dependencies]
anyhow = "1.0.64"
Expand Down
8 changes: 4 additions & 4 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.3"
version = "0.7.0-alpha.4"
authors = ["IOTA Stiftung"]
edition = "2021"
homepage = "https://www.iota.org"
Expand All @@ -14,9 +14,9 @@ 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.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 }
identity_core = { version = "=0.7.0-alpha.4", path = "../identity_core", default-features = false }
identity_credential = { version = "=0.7.0-alpha.4", path = "../identity_credential", default-features = false, features = ["validator"] }
identity_did = { version = "=0.7.0-alpha.4", path = "../identity_did", 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.3", default-features = false, features = ["block", "std"], optional = true }
num-derive = { version = "0.3", default-features = false }
Expand Down
10 changes: 5 additions & 5 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.3"
version = "0.7.0-alpha.4"
authors = ["IOTA Stiftung"]
edition = "2021"
homepage = "https://www.iota.org"
Expand All @@ -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.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 }
identity_core = { version = "=0.7.0-alpha.4", path = "../identity_core", default-features = false }
identity_credential = { version = "=0.7.0-alpha.4", path = "../identity_credential", default-features = false, features = ["validator"] }
identity_did = { version = "=0.7.0-alpha.4", 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.3"
version = "=0.7.0-alpha.4"
path = "../identity_iota_core"
default-features = false
features = ["send-sync-client-ext", "iota-client"]
Expand Down

0 comments on commit 6f558a9

Please sign in to comment.