From 5b5d4b4e8a3a314c7f5a149ad72d30d75d626164 Mon Sep 17 00:00:00 2001 From: "aha-release-plz[bot]" <211513279+aha-release-plz[bot]@users.noreply.github.com> Date: Mon, 27 Jul 2026 17:19:15 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- crates/stellar-registry-build/CHANGELOG.md | 6 ++++++ crates/stellar-registry-build/Cargo.toml | 2 +- crates/stellar-registry-cli/CHANGELOG.md | 6 ++++++ crates/stellar-registry-cli/Cargo.toml | 4 ++-- crates/stellar-registry-macro/CHANGELOG.md | 14 ++++++++++++++ crates/stellar-registry-name/CHANGELOG.md | 14 ++++++++++++++ crates/stellar-registry/CHANGELOG.md | 6 ++++++ crates/stellar-registry/Cargo.toml | 2 +- 10 files changed, 54 insertions(+), 8 deletions(-) create mode 100644 crates/stellar-registry-macro/CHANGELOG.md create mode 100644 crates/stellar-registry-name/CHANGELOG.md diff --git a/Cargo.lock b/Cargo.lock index ce51929..b7eb440 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4248,14 +4248,14 @@ dependencies = [ [[package]] name = "stellar-registry" -version = "0.0.11" +version = "0.0.12" dependencies = [ "stellar-registry-macro", ] [[package]] name = "stellar-registry-build" -version = "0.0.9" +version = "0.0.10" dependencies = [ "expect-test", "semver", @@ -4270,7 +4270,7 @@ dependencies = [ [[package]] name = "stellar-registry-cli" -version = "0.0.22" +version = "0.0.23" dependencies = [ "assert_cmd", "assert_fs", diff --git a/Cargo.toml b/Cargo.toml index a6db099..f4fa377 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ repository = "https://github.com/stellar-registry/cli" stellar-registry = { path = "crates/stellar-registry" } stellar-registry-test = { path = "crates/stellar-registry-test" } stellar-registry-macro = { path = "crates/stellar-registry-macro", version = "0.0.1" } -stellar-registry-build = { path = "crates/stellar-registry-build", version = "0.0.9" } +stellar-registry-build = { path = "crates/stellar-registry-build", version = "0.0.10" } stellar-registry-name = { path = "crates/stellar-registry-name", version = "0.0.1" } # Cross-repo deps from scaffold-stellar/cli diff --git a/crates/stellar-registry-build/CHANGELOG.md b/crates/stellar-registry-build/CHANGELOG.md index f3487db..39e82fb 100644 --- a/crates/stellar-registry-build/CHANGELOG.md +++ b/crates/stellar-registry-build/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.10](https://github.com/stellar-registry/cli/compare/stellar-registry-build-v0.0.9...stellar-registry-build-v0.0.10) - 2026-07-27 + +### Added + +- [**breaking**] `import_contract!` macro + consolidate registry macros (stellar-scaffold/cli#419) ([#17](https://github.com/stellar-registry/cli/pull/17)) + ## [0.0.9](https://github.com/stellar-registry/cli/compare/stellar-registry-build-v0.0.8...stellar-registry-build-v0.0.9) - 2026-07-06 ### Other diff --git a/crates/stellar-registry-build/Cargo.toml b/crates/stellar-registry-build/Cargo.toml index aed5a7c..15d5664 100644 --- a/crates/stellar-registry-build/Cargo.toml +++ b/crates/stellar-registry-build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stellar-registry-build" -version = "0.0.9" +version = "0.0.10" edition = "2024" description = "A library using the registry at build time" license = "Apache-2.0" diff --git a/crates/stellar-registry-cli/CHANGELOG.md b/crates/stellar-registry-cli/CHANGELOG.md index 6e8d69c..0906b96 100644 --- a/crates/stellar-registry-cli/CHANGELOG.md +++ b/crates/stellar-registry-cli/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.23](https://github.com/stellar-registry/cli/compare/stellar-registry-cli-v0.0.22...stellar-registry-cli-v0.0.23) - 2026-07-27 + +### Added + +- [**breaking**] `import_contract!` macro + consolidate registry macros (stellar-scaffold/cli#419) ([#17](https://github.com/stellar-registry/cli/pull/17)) + ## [0.0.22](https://github.com/stellar-registry/cli/compare/stellar-registry-cli-v0.0.21...stellar-registry-cli-v0.0.22) - 2026-07-06 ### Added diff --git a/crates/stellar-registry-cli/Cargo.toml b/crates/stellar-registry-cli/Cargo.toml index 1a8cac9..9cad60b 100644 --- a/crates/stellar-registry-cli/Cargo.toml +++ b/crates/stellar-registry-cli/Cargo.toml @@ -5,7 +5,7 @@ homepage = "https://github.com/stellar-registry/cli" authors = ["Aha Labs "] license = "Apache-2.0" readme = "README.md" -version = "0.0.22" +version = "0.0.23" edition = "2024" autobins = false repository = "https://github.com/stellar-registry/cli/tree/main/crates/stellar-registry-cli" @@ -32,7 +32,7 @@ clap = { workspace = true, features = [ "string", ] } stellar-cli = { workspace = true, default-features = false, features = [] } -stellar-registry-build = { path = "../stellar-registry-build", version = "0.0.9" } +stellar-registry-build = { path = "../stellar-registry-build", version = "0.0.10" } soroban-spec-tools = { workspace = true } diff --git a/crates/stellar-registry-macro/CHANGELOG.md b/crates/stellar-registry-macro/CHANGELOG.md new file mode 100644 index 0000000..91b7c77 --- /dev/null +++ b/crates/stellar-registry-macro/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +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.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.0.1](https://github.com/stellar-registry/cli/releases/tag/stellar-registry-macro-v0.0.1) - 2026-07-27 + +### Added + +- [**breaking**] `import_contract!` macro + consolidate registry macros (stellar-scaffold/cli#419) ([#17](https://github.com/stellar-registry/cli/pull/17)) diff --git a/crates/stellar-registry-name/CHANGELOG.md b/crates/stellar-registry-name/CHANGELOG.md new file mode 100644 index 0000000..d408d45 --- /dev/null +++ b/crates/stellar-registry-name/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +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.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.0.1](https://github.com/stellar-registry/cli/releases/tag/stellar-registry-name-v0.0.1) - 2026-07-27 + +### Added + +- [**breaking**] `import_contract!` macro + consolidate registry macros (stellar-scaffold/cli#419) ([#17](https://github.com/stellar-registry/cli/pull/17)) diff --git a/crates/stellar-registry/CHANGELOG.md b/crates/stellar-registry/CHANGELOG.md index c4d162d..9f7462c 100644 --- a/crates/stellar-registry/CHANGELOG.md +++ b/crates/stellar-registry/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.12](https://github.com/stellar-registry/cli/compare/stellar-registry-v0.0.11...stellar-registry-v0.0.12) - 2026-07-27 + +### Added + +- [**breaking**] `import_contract!` macro + consolidate registry macros (stellar-scaffold/cli#419) ([#17](https://github.com/stellar-registry/cli/pull/17)) + ## [0.0.11](https://github.com/stellar-registry/cli/compare/stellar-registry-v0.0.10...stellar-registry-v0.0.11) - 2026-07-06 ### Other diff --git a/crates/stellar-registry/Cargo.toml b/crates/stellar-registry/Cargo.toml index af5fb0e..907946e 100644 --- a/crates/stellar-registry/Cargo.toml +++ b/crates/stellar-registry/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stellar-registry" -version = "0.0.11" +version = "0.0.12" edition = "2024" description = "Stellar cross-contract calls, simplified" license = "Apache-2.0"