Skip to content

Commit 3646db8

Browse files
bmwillDaughterOfMars
authored andcommitted
release sui-sdk-types-0.0.2 and sui-crypto-0.0.2
1 parent 6504b34 commit 3646db8

File tree

4 files changed

+53
-5
lines changed

4 files changed

+53
-5
lines changed

crates/sui-crypto/CHANGELOG.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1-
# 0.0.1 - 2024-09-25
1+
# [0.0.2] - 2025-01-06
2+
3+
## Added
4+
5+
- Added support for multisig verification and aggregation ([#25])
6+
- Added blanket implementation for SuiSigner and SuiVerifier ([`bc481a1`])
7+
- Added support for der and pem format for public and private keys ([`df32a46`])
8+
- Added a `SimpleKeypair` type which could be either an ed25519, secp256k1, or secp256r1 keypair ([`8d64c06`])
9+
- Added support for verifying passkey authenticators ([#81])
10+
11+
[#25]: https://github.com/mystenlabs/sui-rust-sdk/pull/25
12+
[`bc481a1`]: https://github.com/mystenlabs/sui-rust-sdk/commit/bc481a1ea156e6ccb528b5b49e62a511be5ba60a
13+
[`df32a46`]: https://github.com/mystenlabs/sui-rust-sdk/commit/df32a46bfbecbbbf4ec7e9c1974eef0916ccd359
14+
[`8d64c06`]: https://github.com/mystenlabs/sui-rust-sdk/commit/8d64c06628b9494c674c27158ce74036fe45080e
15+
[#81]: https://github.com/MystenLabs/sui-rust-sdk/pull/81
16+
17+
# [0.0.1] - 2024-09-25
218

319
Initial release
20+
21+
[0.0.2]: https://github.com/mystenlabs/sui-rust-sdk/releases/tag/sui-crypto-0.0.2
22+
[0.0.1]: https://github.com/mystenlabs/sui-rust-sdk/releases/tag/sui-crypto-0.0.1

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.1"
3+
version = "0.0.2"
44
authors = ["Brandon Williams <[email protected]>"]
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.1", path = "../sui-sdk-types", default-features = false, features = ["hash", "serde"] }
57+
sui-sdk-types = { version = "0.0.2", 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-sdk-types/CHANGELOG.md

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1-
# 0.0.1 - 2024-09-25
1+
# [0.0.2] - 2025-01-06
2+
3+
## Added
4+
5+
- Added `proptest::Arbitrary` impls via the `proptest` feature [`6918fd8`]
6+
- Added From<StructTag> impl for TypeTag [#77]
7+
8+
## Changed
9+
10+
- Update the passkey challenge format to use the same signing message as other key types ([`c5a25ce`])
11+
- Flattened the `types` module into the top-level ([`dc54c46`])
12+
- Folded the `EffectsObjectChange` type into the `ChangedObject` struct ([`aa546ca`])
13+
14+
## Removed
15+
16+
- Removed the `unresolved` module and moved it to the `sui-transaction-builder` crate ([`d965897`])
17+
- Removed the `schemars` feature ([`bc6dd37`])
18+
19+
[`c5a25ce`]: https://github.com/mystenlabs/sui-rust-sdk/commit/c5a25ce356a8cbe42ddcc6ec6bab380007790b44
20+
[`6918fd8`]: https://github.com/mystenlabs/sui-rust-sdk/commit/6918fd88d40734b8c15fb5c519e9a40aec53eb74
21+
[#77]: https://github.com/mystenlabs/sui-rust-sdk/pull/77
22+
[`d965897`]: https://github.com/mystenlabs/sui-rust-sdk/commit/d9658978a4c6e928d036fbedaab9326d5e28de87
23+
[`dc54c46`]: https://github.com/mystenlabs/sui-rust-sdk/commit/dc54c469f9d006f02d82ec5781d73e8e09ae26ae
24+
[`aa546ca`]: https://github.com/mystenlabs/sui-rust-sdk/commit/aa546ca91249932da3f8e3d55ba6e52e40cd8929
25+
[`bc6dd37`]: https://github.com/mystenlabs/sui-rust-sdk/commit/bc6dd3732973ed3c1c3ae811a818fc8504a99f0b
26+
27+
# [0.0.1] - 2024-09-25
228

329
Initial release
30+
31+
[0.0.2]: https://github.com/mystenlabs/sui-rust-sdk/releases/tag/sui-sdk-types-0.0.2
32+
[0.0.1]: https://github.com/mystenlabs/sui-rust-sdk/releases/tag/sui-sdk-types-0.0.1

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 = "iota-sdk-types"
3-
version = "0.0.1"
3+
version = "0.0.2"
44
authors = ["IOTA Foundation <[email protected]>"]
55
edition = "2021"
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)