diff --git a/CHANGELOG.md b/CHANGELOG.md index b177edb..ea0e097 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.lock b/Cargo.lock index 61d8860..6ba771c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -406,7 +406,7 @@ dependencies = [ [[package]] name = "borsh_utils" -version = "0.1.1" +version = "0.1.2" dependencies = [ "bitcoin", "borsh", @@ -2568,7 +2568,7 @@ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214" [[package]] name = "sip7" -version = "0.1.1" +version = "0.1.2" dependencies = [ "base64 0.22.1", "hex", @@ -2641,7 +2641,7 @@ dependencies = [ [[package]] name = "spaces_checkpoint" -version = "0.1.1" +version = "0.1.2" dependencies = [ "anyhow", "clap", @@ -2660,7 +2660,7 @@ dependencies = [ [[package]] name = "spaces_client" -version = "0.1.1" +version = "0.1.2" dependencies = [ "anyhow", "assert_cmd", @@ -2697,7 +2697,7 @@ dependencies = [ [[package]] name = "spaces_nums" -version = "0.1.1" +version = "0.1.2" dependencies = [ "bech32", "bitcoin", @@ -2711,7 +2711,7 @@ dependencies = [ [[package]] name = "spaces_protocol" -version = "0.1.1" +version = "0.1.2" dependencies = [ "bitcoin", "borsh", @@ -2722,7 +2722,7 @@ dependencies = [ [[package]] name = "spaces_testutil" -version = "0.1.1" +version = "0.1.2" dependencies = [ "anyhow", "assert_cmd", @@ -2739,7 +2739,7 @@ dependencies = [ [[package]] name = "spaces_wallet" -version = "0.1.1" +version = "0.1.2" dependencies = [ "anyhow", "bdk_wallet_backport", diff --git a/Cargo.toml b/Cargo.toml index ac4e6aa..7184eb5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" @@ -13,12 +13,12 @@ authors = ["Buffrr "] [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