diff --git a/Cargo.lock b/Cargo.lock index ce51929..6b32a8c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4248,14 +4248,14 @@ dependencies = [ [[package]] name = "stellar-registry" -version = "0.0.11" +version = "0.1.0" dependencies = [ "stellar-registry-macro", ] [[package]] name = "stellar-registry-build" -version = "0.0.9" +version = "0.1.0" dependencies = [ "expect-test", "semver", @@ -4270,7 +4270,7 @@ dependencies = [ [[package]] name = "stellar-registry-cli" -version = "0.0.22" +version = "0.1.0" dependencies = [ "assert_cmd", "assert_fs", @@ -4298,7 +4298,7 @@ dependencies = [ [[package]] name = "stellar-registry-macro" -version = "0.0.1" +version = "0.1.0" dependencies = [ "proc-macro2", "quote", @@ -4312,7 +4312,7 @@ dependencies = [ [[package]] name = "stellar-registry-name" -version = "0.0.1" +version = "0.1.0" dependencies = [ "expect-test", "semver", diff --git a/Cargo.toml b/Cargo.toml index a6db099..7b635f9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,9 +10,9 @@ repository = "https://github.com/stellar-registry/cli" # Local crates 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-name = { path = "crates/stellar-registry-name", version = "0.0.1" } +stellar-registry-macro = { path = "crates/stellar-registry-macro", version = "0.1.0" } +stellar-registry-build = { path = "crates/stellar-registry-build", version = "0.1.0" } +stellar-registry-name = { path = "crates/stellar-registry-name", version = "0.1.0" } # Cross-repo deps from scaffold-stellar/cli stellar-build = "0.0.6" diff --git a/crates/stellar-registry-build/CHANGELOG.md b/crates/stellar-registry-build/CHANGELOG.md index f3487db..d2c877d 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.1.0](https://github.com/stellar-registry/cli/compare/stellar-registry-build-v0.0.9...stellar-registry-build-v0.1.0) - 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..0d26236 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.1.0" 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..52f18a6 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.1.0](https://github.com/stellar-registry/cli/compare/stellar-registry-cli-v0.0.22...stellar-registry-cli-v0.1.0) - 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..e68aea8 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.1.0" 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 = { workspace = true } 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..6def086 --- /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.1.0](https://github.com/stellar-registry/cli/releases/tag/stellar-registry-macro-v0.1.0) - 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-macro/Cargo.toml b/crates/stellar-registry-macro/Cargo.toml index 65b5661..b36d292 100644 --- a/crates/stellar-registry-macro/Cargo.toml +++ b/crates/stellar-registry-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stellar-registry-macro" -version = "0.0.1" +version = "0.1.0" edition = "2024" description = "Macro crate defining the proc-macros that get re-exported by stellar-registry" license = "Apache-2.0" diff --git a/crates/stellar-registry-name/CHANGELOG.md b/crates/stellar-registry-name/CHANGELOG.md new file mode 100644 index 0000000..15eb8bd --- /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.1.0](https://github.com/stellar-registry/cli/releases/tag/stellar-registry-name-v0.1.0) - 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/Cargo.toml b/crates/stellar-registry-name/Cargo.toml index 722b467..29ed598 100644 --- a/crates/stellar-registry-name/Cargo.toml +++ b/crates/stellar-registry-name/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stellar-registry-name" -version = "0.0.1" +version = "0.1.0" edition = "2024" description = "Standard name parsing and formatting for Stellar Registry" license = "Apache-2.0" diff --git a/crates/stellar-registry/CHANGELOG.md b/crates/stellar-registry/CHANGELOG.md index c4d162d..797186e 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.1.0](https://github.com/stellar-registry/cli/compare/stellar-registry-v0.0.11...stellar-registry-v0.1.0) - 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..df654e9 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.1.0" edition = "2024" description = "Stellar cross-contract calls, simplified" license = "Apache-2.0"