Skip to content
Merged
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
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }

Expand Down
6 changes: 6 additions & 0 deletions crates/stellar-registry-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/stellar-registry-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ homepage = "https://github.com/stellar-registry/cli"
authors = ["Aha Labs <hello@theaha.co>"]
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"
Expand Down
6 changes: 6 additions & 0 deletions crates/stellar-registry-macro/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/stellar-registry-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
6 changes: 6 additions & 0 deletions crates/stellar-registry/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/stellar-registry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
Loading