Skip to content
Open
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
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.1.2](https://github.com/spacesprotocol/spaces/compare/spaces_checkpoint-v0.1.0...spaces_checkpoint-v0.1.2) - 2026-04-25

### Bug Fixes

- *(checkpoint)* Preserve write_integrity arity for semver

### Features

- *(checkpoint)* Make integrity.rs write opt-in via --integrity-out

### Style

- Drop trailing whitespace in checkpoint builder Args

## [0.1.1](https://github.com/spacesprotocol/spaces/compare/spaces_checkpoint-v0.1.0...spaces_checkpoint-v0.1.1) - 2026-04-25

### Bug Fixes
Expand Down
16 changes: 8 additions & 8 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 @@ -3,7 +3,7 @@ resolver = "2"
members = ["borsh_utils", "checkpoint", "client", "protocol", "testutil", "wallet", "nums", "sip7"]

[workspace.package]
version = "0.1.1"
version = "0.1.2"
edition = "2024"
rust-version = "1.88"
license = "MIT"
Expand All @@ -13,12 +13,12 @@ authors = ["Buffrr <contact@buffrr.dev>"]

[workspace.dependencies]
# Internal crates
borsh_utils = { path = "borsh_utils", version = "0.1.1", default-features = false }
spaces_protocol = { path = "protocol", version = "0.1.1", default-features = false }
spaces_nums = { path = "nums", version = "0.1.1", default-features = false }
sip7 = { path = "sip7", version = "0.1.1", default-features = false }
spaces_wallet = { path = "wallet", version = "0.1.1", default-features = false }
spaces_client = { path = "client", version = "0.1.1", default-features = false }
borsh_utils = { path = "borsh_utils", version = "0.1.2", default-features = false }
spaces_protocol = { path = "protocol", version = "0.1.2", default-features = false }
spaces_nums = { path = "nums", version = "0.1.2", default-features = false }
sip7 = { path = "sip7", version = "0.1.2", default-features = false }
spaces_wallet = { path = "wallet", version = "0.1.2", default-features = false }
spaces_client = { path = "client", version = "0.1.2", default-features = false }
spaces_testutil = { path = "testutil", default-features = false }

# External
Expand Down