Skip to content

Commit f0c8068

Browse files
committed
release 0.0.5
Release version 0.0.5 of the following crates: - sui-sdk-types - sui-crypto - sui-graphql-client-build - sui-graphql-client - sui-transaction-builder
1 parent 4fee810 commit f0c8068

File tree

7 files changed

+33
-10
lines changed

7 files changed

+33
-10
lines changed

crates/sui-crypto/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# [0.0.5] - 2025-06-12
2+
3+
## Added
4+
5+
- Added support for verifying passkeys in multisigs ([`6d7fab8`])
6+
7+
[`6d7fab8`]: https://github.com/mystenlabs/sui-rust-sdk/commit/6d7fab81c214d9f27555de8a2b8b47233ae9f655
8+
9+
## Changed
10+
- Update to use version 0.0.5 of `sui-sdk-types`
11+
112
# [0.0.4] - 2025-03-31
213

314
- Update to use version 0.0.4 of `sui-sdk-types`
@@ -26,6 +37,7 @@
2637

2738
Initial release
2839

40+
[0.0.5]: https://github.com/mystenlabs/sui-rust-sdk/releases/tag/sui-crypto-0.0.5
2941
[0.0.4]: https://github.com/mystenlabs/sui-rust-sdk/releases/tag/sui-crypto-0.0.4
3042
[0.0.3]: https://github.com/mystenlabs/sui-rust-sdk/releases/tag/sui-crypto-0.0.3
3143
[0.0.2]: https://github.com/mystenlabs/sui-rust-sdk/releases/tag/sui-crypto-0.0.2

crates/sui-crypto/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sui-crypto"
3-
version = "0.0.4"
3+
version = "0.0.5"
44
authors = ["Brandon Williams <brandon@mystenlabs.com>"]
55
repository = "https://github.com/mystenlabs/sui-rust-sdk/"
66
license = "Apache-2.0"
@@ -54,7 +54,7 @@ pem = [
5454

5555
[dependencies]
5656
signature = "2.2"
57-
sui-sdk-types = { version = "0.0.4", path = "../sui-sdk-types", default-features = false, features = ["hash", "serde"] }
57+
sui-sdk-types = { version = "0.0.5", path = "../sui-sdk-types", default-features = false, features = ["hash", "serde"] }
5858

5959
# RNG support
6060
rand_core = { version = "0.6.4", optional = true }

crates/sui-graphql-client-build/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sui-graphql-client-build"
3-
version = "0.0.4"
3+
version = "0.0.5"
44
authors = ["Stefan Stanciulescu <stefan@mystenlabs.com>", "Brandon Williams <brandon@mystenlabs.com>"]
55
repository = "https://github.com/mystenlabs/sui-rust-sdk/"
66
license = "Apache-2.0"

crates/sui-graphql-client/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sui-graphql-client"
3-
version = "0.0.4"
3+
version = "0.0.5"
44
authors = ["Stefan Stanciulescu <stefan@mystenlabs.com>", "Brandon Williams <brandon@mystenlabs.com>"]
55
license = "Apache-2.0"
66
edition = "2021"
@@ -19,16 +19,16 @@ futures = "0.3.29"
1919
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json"] }
2020
serde = { version = "1.0.144" }
2121
serde_json = {version = "1.0.95"}
22-
sui-types = { package = "sui-sdk-types", version = "0.0.4", path = "../sui-sdk-types", features = ["serde"] }
22+
sui-types = { package = "sui-sdk-types", version = "0.0.5", path = "../sui-sdk-types", features = ["serde"] }
2323
tracing = "0.1.37"
2424
thiserror = "2.0.12"
2525
tokio = "1.36.0"
2626
url = "2.5.3"
2727

2828
[dev-dependencies]
29-
sui-types = { package = "sui-sdk-types", version = "0.0.4", path = "../sui-sdk-types", features = ["serde", "rand", "hash"] }
29+
sui-types = { package = "sui-sdk-types", version = "0.0.5", path = "../sui-sdk-types", features = ["serde", "rand", "hash"] }
3030
rand = "0.8.5"
3131
tokio = { version = "1.40.0", features = ["full"] }
3232

3333
[build-dependencies]
34-
sui-graphql-client-build = { version = "0.0.4", path = "../sui-graphql-client-build" }
34+
sui-graphql-client-build = { version = "0.0.5", path = "../sui-graphql-client-build" }

crates/sui-sdk-types/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# [0.0.5] - 2025-06-12
2+
3+
## Added
4+
5+
- Added support for various new variants and types.
6+
- Added support for deriving ZkLoginPublicIdentifier from ZkLoginInputs ([`ce2b6b4d`])
7+
- Added support for passkeys in multisigs ([`5b61c62a`])
8+
9+
[`ce2b6b4d`]: https://github.com/mystenlabs/sui-rust-sdk/commit/ce2b6b4d149c44d08bc89a1bf051762dfdb30e9e
10+
[`5b61c62a`]: https://github.com/mystenlabs/sui-rust-sdk/commit/5b61c62acdb36a11ee7df531f8e7f57ed841ae59
11+
112
# [0.0.4] - 2025-03-31
213

314
## Added

crates/sui-sdk-types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sui-sdk-types"
3-
version = "0.0.4"
3+
version = "0.0.5"
44
authors = ["Brandon Williams <brandon@mystenlabs.com>"]
55
repository = "https://github.com/mystenlabs/sui-rust-sdk/"
66
license = "Apache-2.0"

crates/sui-transaction-builder/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sui-transaction-builder"
3-
version = "0.0.4"
3+
version = "0.0.5"
44
authors = ["Stefan Stanciulescu <stefan@mystenlabs.com>", "Brandon Williams <brandon@mystenlabs.com>"]
55
license = "Apache-2.0"
66
edition = "2021"
@@ -11,7 +11,7 @@ base64ct = { version = "1.6", features = ["std"] }
1111
bcs = "0.1.6"
1212
serde = { version = "1.0", features = ["derive"] }
1313
serde_with = { version = "3.9", default-features = false, features = ["alloc"] }
14-
sui-types = { package = "sui-sdk-types", version = "0.0.4", path = "../sui-sdk-types", features = ["serde", "hash"] }
14+
sui-types = { package = "sui-sdk-types", version = "0.0.5", path = "../sui-sdk-types", features = ["serde", "hash"] }
1515
thiserror = "2.0"
1616
serde_json = { version = "1.0.128" }
1717

0 commit comments

Comments
 (0)