Skip to content

Commit 9db27e1

Browse files
committed
release 0.0.6
Release version 0.0.6 of the following crates: - sui-sdk-types - sui-crypto - sui-rpc - sui-graphql-client-build - sui-graphql-client - sui-transaction-builder
1 parent 71bb8c2 commit 9db27e1

File tree

10 files changed

+45
-14
lines changed

10 files changed

+45
-14
lines changed

crates/sui-crypto/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# [0.0.6] - 2025-07-16
2+
3+
- Update to use version 0.0.6 of `sui-sdk-types`
4+
15
# [0.0.5] - 2025-06-12
26

37
## Added

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.5"
3+
version = "0.0.6"
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.5", path = "../sui-sdk-types", default-features = false, features = ["hash", "serde"] }
57+
sui-sdk-types = { version = "0.0.6", 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.5"
3+
version = "0.0.6"
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"
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# 0.0.6 - 2025-07-16
2+
3+
## Added
4+
5+
- Return address for CoinMetadata query [#122]
6+
7+
[#122]: https://github.com/MystenLabs/sui-rust-sdk/pull/122
8+
19
# 0.0.1 - 2024-09-25
210

311
Initial release

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.5"
3+
version = "0.0.6"
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.5", path = "../sui-sdk-types", features = ["serde"] }
22+
sui-types = { package = "sui-sdk-types", version = "0.0.6", 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.5", path = "../sui-sdk-types", features = ["serde", "rand", "hash"] }
29+
sui-types = { package = "sui-sdk-types", version = "0.0.6", 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.5", path = "../sui-graphql-client-build" }
34+
sui-graphql-client-build = { version = "0.0.6", path = "../sui-graphql-client-build" }

crates/sui-rpc/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# [0.0.6] - 2025-07-16
2+
3+
Initial release
4+
5+
[0.0.6]: https://github.com/mystenlabs/sui-rust-sdk/releases/tag/sui-rpc-0.0.6

crates/sui-rpc/Cargo.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
[package]
22
name = "sui-rpc"
3-
version = "0.0.0"
3+
version = "0.0.6"
44
authors = ["Brandon Williams <brandon@mystenlabs.com>"]
55
repository = "https://github.com/mystenlabs/sui-rust-sdk/"
66
license = "Apache-2.0"
77
edition = "2021"
8-
readme = "README.md"
98
description = "RPC interface definitions and client for the Sui Sdk"
109

1110
[package.metadata.docs.rs]
@@ -27,7 +26,7 @@ default = []
2726
[dependencies]
2827
bcs = "0.1.6"
2928
serde = { version = "1.0.210" }
30-
sui-sdk-types = { version = "0.0.5", path = "../sui-sdk-types", default-features = false, features = ["serde", "hash"] }
29+
sui-sdk-types = { version = "0.0.6", path = "../sui-sdk-types", default-features = false, features = ["serde", "hash"] }
3130
roaring = { version = "0.10.9", default-features = false }
3231

3332
# dependencies for the protobuf and gRPC definitions
@@ -45,7 +44,7 @@ rand = "0.8"
4544
paste = "1.0.15"
4645
proptest = { version = "1.6.0", default-features = false, features = ["std"] }
4746
test-strategy = { version = "0.4" }
48-
sui-sdk-types = { version = "0.0.5", path = "../sui-sdk-types", default-features = false, features = ["proptest", "serde", "hash"] }
47+
sui-sdk-types = { version = "0.0.6", path = "../sui-sdk-types", default-features = false, features = ["proptest", "serde", "hash"] }
4948
serde_json = { version = "1.0.128" }
5049

5150
[lints.rust]

crates/sui-sdk-types/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# [0.0.6] - 2025-07-16
2+
3+
## Added
4+
5+
- Added EndOfEpochTransactionKind::CoinRegistryCreate [#117]
6+
7+
## Removed
8+
9+
- Removed bespoke json serde impls for various types [`0c383a17`]
10+
11+
[#117]: https://github.com/MystenLabs/sui-rust-sdk/pull/117
12+
[`0c383a17`]: https://github.com/mystenlabs/sui-rust-sdk/commit/0c383a177f80ac44876e70367c51b1ab3c5ea043
13+
114
# [0.0.5] - 2025-06-12
215

316
## Added
@@ -66,6 +79,8 @@
6679

6780
Initial release
6881

82+
[0.0.6]: https://github.com/mystenlabs/sui-rust-sdk/releases/tag/sui-sdk-types-0.0.6
83+
[0.0.5]: https://github.com/mystenlabs/sui-rust-sdk/releases/tag/sui-sdk-types-0.0.5
6984
[0.0.4]: https://github.com/mystenlabs/sui-rust-sdk/releases/tag/sui-sdk-types-0.0.4
7085
[0.0.3]: https://github.com/mystenlabs/sui-rust-sdk/releases/tag/sui-sdk-types-0.0.3
7186
[0.0.2]: https://github.com/mystenlabs/sui-rust-sdk/releases/tag/sui-sdk-types-0.0.2

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.5"
3+
version = "0.0.6"
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.5"
3+
version = "0.0.6"
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.5", path = "../sui-sdk-types", features = ["serde", "hash"] }
14+
sui-types = { package = "sui-sdk-types", version = "0.0.6", path = "../sui-sdk-types", features = ["serde", "hash"] }
1515
thiserror = "2.0"
1616
serde_json = { version = "1.0.128" }
1717

0 commit comments

Comments
 (0)