diff --git a/Cargo.lock b/Cargo.lock index 6ffc964..6fc26e6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4248,7 +4248,7 @@ dependencies = [ [[package]] name = "stellar-registry" -version = "0.1.0" +version = "0.1.1" dependencies = [ "stellar-registry-macro", ] @@ -4270,7 +4270,7 @@ dependencies = [ [[package]] name = "stellar-registry-cli" -version = "0.1.0" +version = "0.1.1" dependencies = [ "assert_cmd", "assert_fs", @@ -4298,7 +4298,7 @@ dependencies = [ [[package]] name = "stellar-registry-macro" -version = "0.1.0" +version = "0.1.1" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 3c857c8..29dd402 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ 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.1.0" } +stellar-registry-macro = { path = "crates/stellar-registry-macro", version = "0.1.1" } stellar-registry-build = { path = "crates/stellar-registry-build", version = "0.1.0" } stellar-registry-name = { path = "crates/stellar-registry-name", version = "0.1.0" } diff --git a/crates/stellar-registry-cli/CHANGELOG.md b/crates/stellar-registry-cli/CHANGELOG.md index 52f18a6..c586adc 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.1](https://github.com/stellar-registry/cli/compare/stellar-registry-cli-v0.1.0...stellar-registry-cli-v0.1.1) - 2026-09-11 + +### Other + +- test fetch_contract_id default fails for flagged ([#60](https://github.com/stellar-registry/cli/pull/60)) + ## [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 diff --git a/crates/stellar-registry-cli/Cargo.toml b/crates/stellar-registry-cli/Cargo.toml index e68aea8..b8e4105 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.1.0" +version = "0.1.1" edition = "2024" autobins = false repository = "https://github.com/stellar-registry/cli/tree/main/crates/stellar-registry-cli" diff --git a/crates/stellar-registry-macro/CHANGELOG.md b/crates/stellar-registry-macro/CHANGELOG.md index 6def086..c9e7ed4 100644 --- a/crates/stellar-registry-macro/CHANGELOG.md +++ b/crates/stellar-registry-macro/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.1](https://github.com/stellar-registry/cli/compare/stellar-registry-macro-v0.1.0...stellar-registry-macro-v0.1.1) - 2026-09-11 + +### Added + +- support SAC and XLM in import_contract! ([#64](https://github.com/stellar-registry/cli/pull/64)) + ## [0.1.0](https://github.com/stellar-registry/cli/releases/tag/stellar-registry-macro-v0.1.0) - 2026-07-27 ### Added diff --git a/crates/stellar-registry-macro/Cargo.toml b/crates/stellar-registry-macro/Cargo.toml index b36d292..c25c519 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.1.0" +version = "0.1.1" 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/CHANGELOG.md b/crates/stellar-registry/CHANGELOG.md index 797186e..f078611 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.1](https://github.com/stellar-registry/cli/compare/stellar-registry-v0.1.0...stellar-registry-v0.1.1) - 2026-09-11 + +### Added + +- support SAC and XLM in import_contract! ([#64](https://github.com/stellar-registry/cli/pull/64)) + ## [0.1.0](https://github.com/stellar-registry/cli/compare/stellar-registry-v0.0.11...stellar-registry-v0.1.0) - 2026-07-27 ### Added diff --git a/crates/stellar-registry/Cargo.toml b/crates/stellar-registry/Cargo.toml index df654e9..f6561af 100644 --- a/crates/stellar-registry/Cargo.toml +++ b/crates/stellar-registry/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stellar-registry" -version = "0.1.0" +version = "0.1.1" edition = "2024" description = "Stellar cross-contract calls, simplified" license = "Apache-2.0"