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

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

10 changes: 10 additions & 0 deletions crates/stellar-build/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.6](https://github.com/theahaco/scaffold-stellar/compare/stellar-build-v0.0.5...stellar-build-v0.0.6) - 2026-02-16

### Added

- add managed contracts and `stellar-registry-build` ([#322](https://github.com/theahaco/scaffold-stellar/pull/322))

### Other

- Update editions to 2024 across crates ([#292](https://github.com/theahaco/scaffold-stellar/pull/292))

## [0.0.5](https://github.com/theahaco/scaffold-stellar/compare/stellar-build-v0.0.4...stellar-build-v0.0.5) - 2025-11-10

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/stellar-build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stellar-build"
version = "0.0.5"
version = "0.0.6"
edition = "2024"
description = "A library for gathering Contracts"
license = "Apache-2.0"
Expand Down
15 changes: 15 additions & 0 deletions crates/stellar-registry-build/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# 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.6](https://github.com/theahaco/scaffold-stellar/compare/stellar-registry-build-v0.0.5...stellar-registry-build-v0.0.6) - 2026-02-16

### Fixed

- update code for stellar-cli v25, soroban-sdk v25, and admin-sep API changes ([#383](https://github.com/theahaco/scaffold-stellar/pull/383))
- use pedantic clippy and apply suggestions ([#379](https://github.com/theahaco/scaffold-stellar/pull/379))
4 changes: 2 additions & 2 deletions 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.5"
version = "0.0.6"
edition = "2024"
description = "A library using the registry at build time"
license = "Apache-2.0"
Expand All @@ -14,7 +14,7 @@ crate-type = ["rlib"]

[dependencies]
stellar-cli = { workspace = true, default-features = false, features = [] }
stellar-build = { path = "../stellar-build", version = "0.0.5" }
stellar-build = { path = "../stellar-build", version = "0.0.6" }

soroban-spec-tools = { workspace = true }
soroban-rpc = { workspace = true }
Expand Down
18 changes: 18 additions & 0 deletions crates/stellar-registry-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.16](https://github.com/theahaco/scaffold-stellar/compare/stellar-registry-cli-v0.0.15...stellar-registry-cli-v0.0.16) - 2026-02-16

### Added

- add managed contracts and `stellar-registry-build` ([#322](https://github.com/theahaco/scaffold-stellar/pull/322))
- update stellar-cli and fix breaking changes ([#324](https://github.com/theahaco/scaffold-stellar/pull/324))

### Fixed

- reorganize RPC tests to simplify filters and fix flaky example tests ([#386](https://github.com/theahaco/scaffold-stellar/pull/386))
- update code for stellar-cli v25, soroban-sdk v25, and admin-sep API changes ([#383](https://github.com/theahaco/scaffold-stellar/pull/383))
- use pedantic clippy and apply suggestions ([#379](https://github.com/theahaco/scaffold-stellar/pull/379))
- create parent directories if they don't exist ([#334](https://github.com/theahaco/scaffold-stellar/pull/334))

### Other

- Update editions to 2024 across crates ([#292](https://github.com/theahaco/scaffold-stellar/pull/292))

## [0.0.15](https://github.com/theahaco/scaffold-stellar/compare/stellar-registry-cli-v0.0.14...stellar-registry-cli-v0.0.15) - 2025-11-10

### Added
Expand Down
6 changes: 3 additions & 3 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/theahaco/scaffold-stellar"
authors = ["Aha Labs <hello@theaha.co>"]
license = "Apache-2.0"
readme = "README.md"
version = "0.0.15"
version = "0.0.16"
edition = "2024"
autobins = false
repository = "https://github.com/theahaco/scaffold-stellar/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.5" }
stellar-registry-build = { path = "../stellar-registry-build", version = "0.0.6" }


soroban-spec-tools = { workspace = true }
Expand All @@ -52,7 +52,7 @@ rand = "0.9.2"
reqwest = { workspace = true }

[dev-dependencies]
stellar-build = { version = "0.0.5", path = "../stellar-build" }
stellar-build = { version = "0.0.6", path = "../stellar-build" }
stellar-scaffold-test = { workspace = true }
assert_cmd = "2.1.1"
assert_fs = "1.1.3"
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.0.6](https://github.com/theahaco/scaffold-stellar/compare/stellar-registry-v0.0.5...stellar-registry-v0.0.6) - 2026-02-16

### Other

- Update editions to 2024 across crates ([#292](https://github.com/theahaco/scaffold-stellar/pull/292))

## [0.0.5](https://github.com/theahaco/scaffold-stellar/compare/stellar-registry-v0.0.4...stellar-registry-v0.0.5) - 2025-11-10

### Other
Expand Down
4 changes: 2 additions & 2 deletions 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.5"
version = "0.0.6"
edition = "2024"
description = "A smart contract library for using stellar registry to import other smart contracts"
license = "Apache-2.0"
Expand All @@ -13,4 +13,4 @@ crate-type = ["rlib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
stellar-scaffold-macro = { path = "../stellar-scaffold-macro", version = "0.8.10" }
stellar-scaffold-macro = { path = "../stellar-scaffold-macro", version = "0.8.11" }
25 changes: 25 additions & 0 deletions crates/stellar-scaffold-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.19](https://github.com/theahaco/scaffold-stellar/compare/stellar-scaffold-cli-v0.0.18...stellar-scaffold-cli-v0.0.19) - 2026-02-16

### Added

- add managed contracts and `stellar-registry-build` ([#322](https://github.com/theahaco/scaffold-stellar/pull/322))
- update stellar-cli and fix breaking changes ([#324](https://github.com/theahaco/scaffold-stellar/pull/324))

### Fixed

- reorganize RPC tests to simplify filters and fix flaky example tests ([#386](https://github.com/theahaco/scaffold-stellar/pull/386))
- update code for stellar-cli v25, soroban-sdk v25, and admin-sep API changes ([#383](https://github.com/theahaco/scaffold-stellar/pull/383))
- use pedantic clippy and apply suggestions ([#379](https://github.com/theahaco/scaffold-stellar/pull/379))
- use stellar-cli action instead of just setup ([#323](https://github.com/theahaco/scaffold-stellar/pull/323))
- handle npm install errors ([#312](https://github.com/theahaco/scaffold-stellar/pull/312))

### Other

- Chore/accomodate oz v 0.6.0 ([#369](https://github.com/theahaco/scaffold-stellar/pull/369))
- Enable to import contracts from soroban examples ([#327](https://github.com/theahaco/scaffold-stellar/pull/327))
- fetch the most recent supported oz release ([#357](https://github.com/theahaco/scaffold-stellar/pull/357))
- Feat/scaffold clean ([#352](https://github.com/theahaco/scaffold-stellar/pull/352))
- *(deps)* bump cargo_toml from 0.20.5 to 0.22.3 ([#295](https://github.com/theahaco/scaffold-stellar/pull/295))
- Update editions to 2024 across crates ([#292](https://github.com/theahaco/scaffold-stellar/pull/292))
- *(deps)* bump itertools from 0.12.1 to 0.14.0 ([#296](https://github.com/theahaco/scaffold-stellar/pull/296))

## [0.0.18](https://github.com/theahaco/scaffold-stellar/compare/stellar-scaffold-cli-v0.0.17...stellar-scaffold-cli-v0.0.18) - 2025-11-11

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions crates/stellar-scaffold-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ homepage = "https://github.com/theahaco/scaffold-stellar"
authors = ["Aha Labs <hello@theaha.co>"]
license = "Apache-2.0"
readme = "README.md"
version = "0.0.18"
version = "0.0.19"
edition = "2024"
autobins = false
repository = "https://github.com/theahaco/scaffold-stellar/tree/main/crates/stellar-scaffold-cli"
Expand All @@ -25,7 +25,7 @@ path = "src/lib.rs"
doctest = false

[dependencies]
stellar-build = { path = "../stellar-build", version = "0.0.5" }
stellar-build = { path = "../stellar-build", version = "0.0.6" }
stellar-cli = { workspace = true, default-features = false }
soroban-rpc = { workspace = true }
soroban-spec-tools = { workspace = true }
Expand Down
10 changes: 10 additions & 0 deletions crates/stellar-scaffold-macro/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8.11](https://github.com/theahaco/scaffold-stellar/compare/stellar-scaffold-macro-v0.8.10...stellar-scaffold-macro-v0.8.11) - 2026-02-16

### Added

- add managed contracts and `stellar-registry-build` ([#322](https://github.com/theahaco/scaffold-stellar/pull/322))

### Other

- Update editions to 2024 across crates ([#292](https://github.com/theahaco/scaffold-stellar/pull/292))

## [0.8.10](https://github.com/theahaco/scaffold-stellar/compare/stellar-scaffold-macro-v0.8.9...stellar-scaffold-macro-v0.8.10) - 2025-11-10

### Other
Expand Down
4 changes: 2 additions & 2 deletions crates/stellar-scaffold-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stellar-scaffold-macro"
version = "0.8.10"
version = "0.8.11"
edition = "2024"
description = "Macros needed by stellar-scaffold"
license = "Apache-2.0"
Expand All @@ -10,7 +10,7 @@ repository = "https://github.com/theahaco/scaffold-stellar/tree/main/crates/stel
proc-macro = true

[dependencies]
stellar-build = { path = "../stellar-build", version = "0.0.5" }
stellar-build = { path = "../stellar-build", version = "0.0.6" }
proc-macro2 = "1.0"
syn = { version = "2", features = ["full"] }
quote = "1.0"
Expand Down
Loading