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
10 changes: 5 additions & 5 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
6 changes: 6 additions & 0 deletions crates/stellar-registry-build/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.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
Expand Down
2 changes: 1 addition & 1 deletion crates/stellar-registry-build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
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.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
Expand Down
4 changes: 2 additions & 2 deletions 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.0.22"
version = "0.1.0"
edition = "2024"
autobins = false
repository = "https://github.com/stellar-registry/cli/tree/main/crates/stellar-registry-cli"
Expand All @@ -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 }
Expand Down
14 changes: 14 additions & 0 deletions crates/stellar-registry-macro/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
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.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"
Expand Down
14 changes: 14 additions & 0 deletions crates/stellar-registry-name/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
2 changes: 1 addition & 1 deletion crates/stellar-registry-name/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
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.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
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.0.11"
version = "0.1.0"
edition = "2024"
description = "Stellar cross-contract calls, simplified"
license = "Apache-2.0"
Expand Down
Loading