Skip to content

Commit 4dec180

Browse files
github-actions[bot]identity-botUMR1352
authored
Release v1.7.0-beta.2 (#1736)
* changelog and versions * update changelog --------- Co-authored-by: Identity Bot <[email protected]> Co-authored-by: Enrico Marconi <[email protected]>
1 parent e3d2069 commit 4dec180

File tree

16 files changed

+73
-65
lines changed

16 files changed

+73
-65
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [v1.7.0-alpha.2](https://github.com/iotaledger/identity/tree/v1.7.0-beta.2) (2025-10-14)
4+
5+
[Full Changelog](https://github.com/iotaledger/identity/compare/v1.7.0-beta.2...v1.7.0-beta.1)
6+
7+
### Patch
8+
9+
- Bump `iota` dependency to version `v1.9.2` [\#1735](https://github.com/iotaledger/identity/pull/1735)
10+
311
## [v1.7.0-alpha.1](https://github.com/iotaledger/identity/tree/v1.7.0-beta.1) (2025-10-14)
412

513
[Full Changelog](https://github.com/iotaledger/identity/compare/v1.7.0-beta.1...v1.6.0-beta.8)

examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "examples"
3-
version = "1.7.0-beta.1"
3+
version = "1.7.0-beta.2"
44
authors = ["IOTA Stiftung"]
55
edition = "2021"
66
publish = false

identity_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "identity_core"
3-
version = "1.7.0-beta.1"
3+
version = "1.7.0-beta.2"
44
authors.workspace = true
55
edition.workspace = true
66
homepage.workspace = true

identity_credential/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "identity_credential"
3-
version = "1.7.0-beta.1"
3+
version = "1.7.0-beta.2"
44
authors = ["IOTA Stiftung"]
55
edition = "2021"
66
homepage.workspace = true
@@ -16,10 +16,10 @@ async-trait = { version = "0.1.64", default-features = false }
1616
bls12_381_plus = { workspace = true, optional = true }
1717
flate2 = { version = "1.0.28", default-features = false, features = ["rust_backend"], optional = true }
1818
futures = { version = "0.3", default-features = false, features = ["alloc"], optional = true }
19-
identity_core = { version = "=1.7.0-beta.1", path = "../identity_core", default-features = false }
20-
identity_did = { version = "=1.7.0-beta.1", path = "../identity_did", default-features = false }
21-
identity_document = { version = "=1.7.0-beta.1", path = "../identity_document", default-features = false }
22-
identity_verification = { version = "=1.7.0-beta.1", path = "../identity_verification", default-features = false }
19+
identity_core = { version = "=1.7.0-beta.2", path = "../identity_core", default-features = false }
20+
identity_did = { version = "=1.7.0-beta.2", path = "../identity_did", default-features = false }
21+
identity_document = { version = "=1.7.0-beta.2", path = "../identity_document", default-features = false }
22+
identity_verification = { version = "=1.7.0-beta.2", path = "../identity_verification", default-features = false }
2323
indexmap = { version = "2.0", default-features = false, features = ["std", "serde"] }
2424
itertools = { version = "0.11", default-features = false, features = ["use_std"], optional = true }
2525
json-proof-token = { workspace = true, optional = true }

identity_did/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "identity_did"
3-
version = "1.7.0-beta.1"
3+
version = "1.7.0-beta.2"
44
authors.workspace = true
55
edition = "2021"
66
homepage.workspace = true
@@ -13,8 +13,8 @@ description = "Agnostic implementation of the Decentralized Identifiers (DID) st
1313
[dependencies]
1414
did_url_parser = { version = "0.3.0", features = ["std", "serde"] }
1515
form_urlencoded = { version = "1.2.0", default-features = false, features = ["alloc"] }
16-
identity_core = { version = "=1.7.0-beta.1", path = "../identity_core", default-features = false }
17-
identity_jose = { version = "=1.7.0-beta.1", path = "../identity_jose" }
16+
identity_core = { version = "=1.7.0-beta.2", path = "../identity_core", default-features = false }
17+
identity_jose = { version = "=1.7.0-beta.2", path = "../identity_jose" }
1818
serde.workspace = true
1919
strum.workspace = true
2020
thiserror.workspace = true

identity_document/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "identity_document"
3-
version = "1.7.0-beta.1"
3+
version = "1.7.0-beta.2"
44
authors.workspace = true
55
edition.workspace = true
66
homepage.workspace = true
@@ -12,9 +12,9 @@ description = "Method-agnostic implementation of the Decentralized Identifiers (
1212

1313
[dependencies]
1414
did_url_parser = { version = "0.2.0", features = ["std", "serde"] }
15-
identity_core = { version = "=1.7.0-beta.1", path = "../identity_core", default-features = false }
16-
identity_did = { version = "=1.7.0-beta.1", path = "../identity_did" }
17-
identity_verification = { version = "=1.7.0-beta.1", path = "../identity_verification", default-features = false }
15+
identity_core = { version = "=1.7.0-beta.2", path = "../identity_core", default-features = false }
16+
identity_did = { version = "=1.7.0-beta.2", path = "../identity_did" }
17+
identity_verification = { version = "=1.7.0-beta.2", path = "../identity_verification", default-features = false }
1818
indexmap = { version = "2.0", default-features = false, features = ["std", "serde"] }
1919
serde.workspace = true
2020
strum.workspace = true

identity_ecdsa_verifier/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "identity_ecdsa_verifier"
3-
version = "1.7.0-beta.1"
3+
version = "1.7.0-beta.2"
44
authors = ["IOTA Stiftung", "Filancore GmbH"]
55
edition.workspace = true
66
homepage.workspace = true
@@ -14,7 +14,7 @@ description = "JWS ECDSA signature verification for IOTA Identity"
1414
workspace = true
1515

1616
[dependencies]
17-
identity_verification = { version = "=1.7.0-beta.1", path = "../identity_verification", default-features = false }
17+
identity_verification = { version = "=1.7.0-beta.2", path = "../identity_verification", default-features = false }
1818
k256 = { version = "0.13.3", default-features = false, features = ["std", "ecdsa", "ecdsa-core"], optional = true }
1919
p256 = { version = "0.13.2", default-features = false, features = ["std", "ecdsa", "ecdsa-core"], optional = true }
2020
signature = { version = "2", default-features = false }

identity_eddsa_verifier/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "identity_eddsa_verifier"
3-
version = "1.7.0-beta.1"
3+
version = "1.7.0-beta.2"
44
authors.workspace = true
55
edition.workspace = true
66
homepage.workspace = true
@@ -11,7 +11,7 @@ repository.workspace = true
1111
description = "JWS EdDSA signature verification for IOTA Identity"
1212

1313
[dependencies]
14-
identity_jose = { version = "=1.7.0-beta.1", path = "../identity_jose", default-features = false }
14+
identity_jose = { version = "=1.7.0-beta.2", path = "../identity_jose", default-features = false }
1515
iota-crypto = { version = "0.23.2", default-features = false, features = ["std"] }
1616

1717
[features]

identity_iota/Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "identity_iota"
3-
version = "1.7.0-beta.1"
3+
version = "1.7.0-beta.2"
44
authors.workspace = true
55
edition.workspace = true
66
homepage.workspace = true
@@ -11,14 +11,14 @@ repository.workspace = true
1111
description = "Framework for Self-Sovereign Identity with IOTA DID."
1212

1313
[dependencies]
14-
identity_core = { version = "=1.7.0-beta.1", path = "../identity_core", default-features = false }
15-
identity_credential = { version = "=1.7.0-beta.1", path = "../identity_credential", features = ["validator"], default-features = false }
16-
identity_did = { version = "=1.7.0-beta.1", path = "../identity_did", default-features = false }
17-
identity_document = { version = "=1.7.0-beta.1", path = "../identity_document", default-features = false }
18-
identity_iota_core = { version = "=1.7.0-beta.1", path = "../identity_iota_core", default-features = false }
19-
identity_resolver = { version = "=1.7.0-beta.1", path = "../identity_resolver", default-features = false, optional = true }
20-
identity_storage = { version = "=1.7.0-beta.1", path = "../identity_storage", default-features = false, features = ["iota-document"] }
21-
identity_verification = { version = "=1.7.0-beta.1", path = "../identity_verification", default-features = false }
14+
identity_core = { version = "=1.7.0-beta.2", path = "../identity_core", default-features = false }
15+
identity_credential = { version = "=1.7.0-beta.2", path = "../identity_credential", features = ["validator"], default-features = false }
16+
identity_did = { version = "=1.7.0-beta.2", path = "../identity_did", default-features = false }
17+
identity_document = { version = "=1.7.0-beta.2", path = "../identity_document", default-features = false }
18+
identity_iota_core = { version = "=1.7.0-beta.2", path = "../identity_iota_core", default-features = false }
19+
identity_resolver = { version = "=1.7.0-beta.2", path = "../identity_resolver", default-features = false, optional = true }
20+
identity_storage = { version = "=1.7.0-beta.2", path = "../identity_storage", default-features = false, features = ["iota-document"] }
21+
identity_verification = { version = "=1.7.0-beta.2", path = "../identity_verification", default-features = false }
2222

2323
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
2424
iota_interaction.workspace = true
@@ -29,7 +29,7 @@ iota_interaction = { git = "https://github.com/iotaledger/product-core.git", tag
2929
[dev-dependencies]
3030
# required for doc test
3131
anyhow = "1.0.64"
32-
identity_iota = { version = "=1.7.0-beta.1", path = "./", features = ["memstore"] }
32+
identity_iota = { version = "=1.7.0-beta.2", path = "./", features = ["memstore"] }
3333
iota-sdk = { git = "https://github.com/iotaledger/iota.git", package = "iota-sdk", tag = "v1.9.2" }
3434
rand = "0.8.5"
3535
secret-storage = { git = "https://github.com/iotaledger/secret-storage.git", tag = "v0.3.0" }

identity_iota_core/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "identity_iota_core"
3-
version = "1.7.0-beta.1"
3+
version = "1.7.0-beta.2"
44
authors.workspace = true
55
edition.workspace = true
66
homepage.workspace = true
@@ -15,11 +15,11 @@ anyhow = "1.0.75"
1515
async-trait = { version = "0.1.81", default-features = false, optional = true }
1616
cfg-if = "1.0.0"
1717
futures = { version = "0.3", default-features = false }
18-
identity_core = { version = "=1.7.0-beta.1", path = "../identity_core", default-features = false }
19-
identity_credential = { version = "=1.7.0-beta.1", path = "../identity_credential", default-features = false, features = ["validator"] }
20-
identity_did = { version = "=1.7.0-beta.1", path = "../identity_did", default-features = false }
21-
identity_document = { version = "=1.7.0-beta.1", path = "../identity_document", default-features = false }
22-
identity_verification = { version = "=1.7.0-beta.1", path = "../identity_verification", default-features = false }
18+
identity_core = { version = "=1.7.0-beta.2", path = "../identity_core", default-features = false }
19+
identity_credential = { version = "=1.7.0-beta.2", path = "../identity_credential", default-features = false, features = ["validator"] }
20+
identity_did = { version = "=1.7.0-beta.2", path = "../identity_did", default-features = false }
21+
identity_document = { version = "=1.7.0-beta.2", path = "../identity_document", default-features = false }
22+
identity_verification = { version = "=1.7.0-beta.2", path = "../identity_verification", default-features = false }
2323
num-derive = { version = "0.4", default-features = false }
2424
num-traits = { version = "0.2", default-features = false, features = ["std"] }
2525
once_cell = { version = "1.18", default-features = false, features = ["std"] }
@@ -34,8 +34,8 @@ thiserror.workspace = true
3434
# for feature `iota-client`
3535
bcs = { version = "0.1.4", optional = true }
3636
fastcrypto = { git = "https://github.com/MystenLabs/fastcrypto", rev = "69d496c71fb37e3d22fe85e5bbfd4256d61422b9", package = "fastcrypto", optional = true }
37-
identity_eddsa_verifier = { version = "=1.7.0-beta.1", path = "../identity_eddsa_verifier", optional = true }
38-
identity_jose = { version = "=1.7.0-beta.1", path = "../identity_jose", optional = true }
37+
identity_eddsa_verifier = { version = "=1.7.0-beta.2", path = "../identity_eddsa_verifier", optional = true }
38+
identity_jose = { version = "=1.7.0-beta.2", path = "../identity_jose", optional = true }
3939
iota-crypto = { version = "0.23", optional = true }
4040
itertools = { version = "0.13.0", optional = true }
4141
phf = { version = "0.11.2", features = ["macros"] }

0 commit comments

Comments
 (0)