Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/publish-crates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:
inputs:
tag:
description: Existing release tag, such as v0.2.0
description: Existing release tag, such as v0.3.0
required: true
type: string
resume:
Expand Down
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@ The format is based on [Keep a Changelog], and this project adheres to

## [Unreleased]

## [0.3.0] - 2026-09-17

### Changed

- Update Sui dependencies to 0.4.0 so Move bindings share transaction types that support protocol 137 validity rules.
- **Breaking:** Update public Sui SDK dependencies to 0.4.0 for protocol 137 support.

## [0.2.0] - 2026-08-27

Expand Down Expand Up @@ -44,6 +46,7 @@ The format is based on [Keep a Changelog], and this project adheres to

[Keep a Changelog]: https://keepachangelog.com/en/1.1.0/
[Semantic Versioning]: https://semver.org/spec/v2.0.0.html
[Unreleased]: https://github.com/Talus-Network/move-binding/compare/v0.2.0...HEAD
[Unreleased]: https://github.com/Talus-Network/move-binding/compare/v0.3.0...HEAD
[0.3.0]: https://github.com/Talus-Network/move-binding/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/Talus-Network/move-binding/compare/v0.2.0-rc.1...v0.2.0
[0.2.0-rc.1]: https://github.com/Talus-Network/move-binding/compare/v0.1.0...v0.2.0-rc.1
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@
]

[workspace.package]
version = "0.2.0"
version = "0.3.0"
edition = "2021"
rust-version = "1.90"
license = "Apache-2.0"
repository = "https://github.com/Talus-Network/move-binding"

[workspace.dependencies]
talus-sui-move = { version = "=0.2.0", path = "sui-move" }
talus-sui-move-derive = { version = "=0.2.0", path = "sui-move-derive" }
talus-sui-move-call = { version = "=0.2.0", path = "sui-move-call" }
talus-sui-move-ptb = { version = "=0.2.0", path = "sui-move-ptb" }
talus-sui-move-runtime = { version = "=0.2.0", path = "sui-move-runtime" }
talus-sui-move-codegen = { version = "=0.2.0", path = "sui-move-codegen" }
talus-sui-move = { version = "=0.3.0", path = "sui-move" }
talus-sui-move-derive = { version = "=0.3.0", path = "sui-move-derive" }
talus-sui-move-call = { version = "=0.3.0", path = "sui-move-call" }
talus-sui-move-ptb = { version = "=0.3.0", path = "sui-move-ptb" }
talus-sui-move-runtime = { version = "=0.3.0", path = "sui-move-runtime" }

Check warning on line 24 in Cargo.toml

View workflow job for this annotation

GitHub Actions / Clippy

unused workspace dependency `talus-sui-move-runtime`
talus-sui-move-codegen = { version = "=0.3.0", path = "sui-move-codegen" }

Check warning on line 25 in Cargo.toml

View workflow job for this annotation

GitHub Actions / Clippy

unused workspace dependency `talus-sui-move-codegen`
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,14 @@ For example:

```toml
[dependencies]
talus-sui-move = { version = "=0.2.0", features = ["derive"] }
talus-sui-move = { version = "=0.3.0", features = ["derive"] }
```

Use the same version for all `talus-sui-move*` crates in your application. Version `0.3`
uses the `0.4` series of `sui-sdk-types`, `sui-rpc`, and `sui-crypto`. If your application
passes their types or signers to these crates, update those direct dependencies to `0.4`
as well.

```rust
use talus_sui_move::MoveType;
```
Expand Down
6 changes: 3 additions & 3 deletions sui-move-codegen/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -524,9 +524,9 @@ expects these crates in the consumer’s `Cargo.toml`:

```toml
[dependencies]
talus-sui-move = "=0.2.0"
talus-sui-move-derive = "=0.2.0"
talus-sui-move-call = "=0.2.0"
talus-sui-move = "=0.3.0"
talus-sui-move-derive = "=0.3.0"
talus-sui-move-call = "=0.3.0"
```

If you want to execute calls, add higher layers (`talus-sui-move-ptb`,
Expand Down
2 changes: 1 addition & 1 deletion sui-move-derive/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Most users should depend on `talus-sui-move` and enable its `derive` feature, wh

```toml
[dependencies]
talus-sui-move = { version = "=0.2.0", features = ["derive"] }
talus-sui-move = { version = "=0.3.0", features = ["derive"] }
```

Then use:
Expand Down
Loading