Skip to content

Commit 896aeea

Browse files
chore: release
1 parent 62f899b commit 896aeea

13 files changed

Lines changed: 102 additions & 18 deletions

File tree

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/stellar-build/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.0.6](https://github.com/theahaco/scaffold-stellar/compare/stellar-build-v0.0.5...stellar-build-v0.0.6) - 2026-02-16
11+
12+
### Added
13+
14+
- add managed contracts and `stellar-registry-build` ([#322](https://github.com/theahaco/scaffold-stellar/pull/322))
15+
16+
### Other
17+
18+
- Update editions to 2024 across crates ([#292](https://github.com/theahaco/scaffold-stellar/pull/292))
19+
1020
## [0.0.5](https://github.com/theahaco/scaffold-stellar/compare/stellar-build-v0.0.4...stellar-build-v0.0.5) - 2025-11-10
1121

1222
### Other

crates/stellar-build/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stellar-build"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
edition = "2024"
55
description = "A library for gathering Contracts"
66
license = "Apache-2.0"
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [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
11+
12+
### Fixed
13+
14+
- update code for stellar-cli v25, soroban-sdk v25, and admin-sep API changes ([#383](https://github.com/theahaco/scaffold-stellar/pull/383))
15+
- use pedantic clippy and apply suggestions ([#379](https://github.com/theahaco/scaffold-stellar/pull/379))

crates/stellar-registry-build/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stellar-registry-build"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
edition = "2024"
55
description = "A library using the registry at build time"
66
license = "Apache-2.0"
@@ -14,7 +14,7 @@ crate-type = ["rlib"]
1414

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

1919
soroban-spec-tools = { workspace = true }
2020
soroban-rpc = { workspace = true }

crates/stellar-registry-cli/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [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
11+
12+
### Added
13+
14+
- add managed contracts and `stellar-registry-build` ([#322](https://github.com/theahaco/scaffold-stellar/pull/322))
15+
- update stellar-cli and fix breaking changes ([#324](https://github.com/theahaco/scaffold-stellar/pull/324))
16+
17+
### Fixed
18+
19+
- reorganize RPC tests to simplify filters and fix flaky example tests ([#386](https://github.com/theahaco/scaffold-stellar/pull/386))
20+
- update code for stellar-cli v25, soroban-sdk v25, and admin-sep API changes ([#383](https://github.com/theahaco/scaffold-stellar/pull/383))
21+
- use pedantic clippy and apply suggestions ([#379](https://github.com/theahaco/scaffold-stellar/pull/379))
22+
- create parent directories if they don't exist ([#334](https://github.com/theahaco/scaffold-stellar/pull/334))
23+
24+
### Other
25+
26+
- Update editions to 2024 across crates ([#292](https://github.com/theahaco/scaffold-stellar/pull/292))
27+
1028
## [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
1129

1230
### Added

crates/stellar-registry-cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ homepage = "https://github.com/theahaco/scaffold-stellar"
55
authors = ["Aha Labs <hello@theaha.co>"]
66
license = "Apache-2.0"
77
readme = "README.md"
8-
version = "0.0.15"
8+
version = "0.0.16"
99
edition = "2024"
1010
autobins = false
1111
repository = "https://github.com/theahaco/scaffold-stellar/tree/main/crates/stellar-registry-cli"
@@ -32,7 +32,7 @@ clap = { workspace = true, features = [
3232
"string",
3333
] }
3434
stellar-cli = { workspace = true, default-features = false, features = [] }
35-
stellar-registry-build = { path = "../stellar-registry-build", version = "0.0.5" }
35+
stellar-registry-build = { path = "../stellar-registry-build", version = "0.0.6" }
3636

3737

3838
soroban-spec-tools = { workspace = true }
@@ -52,7 +52,7 @@ rand = "0.9.2"
5252
reqwest = { workspace = true }
5353

5454
[dev-dependencies]
55-
stellar-build = { version = "0.0.5", path = "../stellar-build" }
55+
stellar-build = { version = "0.0.6", path = "../stellar-build" }
5656
stellar-scaffold-test = { workspace = true }
5757
assert_cmd = "2.1.1"
5858
assert_fs = "1.1.3"

crates/stellar-registry/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.0.6](https://github.com/theahaco/scaffold-stellar/compare/stellar-registry-v0.0.5...stellar-registry-v0.0.6) - 2026-02-16
11+
12+
### Other
13+
14+
- Update editions to 2024 across crates ([#292](https://github.com/theahaco/scaffold-stellar/pull/292))
15+
1016
## [0.0.5](https://github.com/theahaco/scaffold-stellar/compare/stellar-registry-v0.0.4...stellar-registry-v0.0.5) - 2025-11-10
1117

1218
### Other

crates/stellar-registry/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stellar-registry"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
edition = "2024"
55
description = "A smart contract library for using stellar registry to import other smart contracts"
66
license = "Apache-2.0"
@@ -13,4 +13,4 @@ crate-type = ["rlib"]
1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
16-
stellar-scaffold-macro = { path = "../stellar-scaffold-macro", version = "0.8.10" }
16+
stellar-scaffold-macro = { path = "../stellar-scaffold-macro", version = "0.8.11" }

crates/stellar-scaffold-cli/CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [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
11+
12+
### Added
13+
14+
- add managed contracts and `stellar-registry-build` ([#322](https://github.com/theahaco/scaffold-stellar/pull/322))
15+
- update stellar-cli and fix breaking changes ([#324](https://github.com/theahaco/scaffold-stellar/pull/324))
16+
17+
### Fixed
18+
19+
- reorganize RPC tests to simplify filters and fix flaky example tests ([#386](https://github.com/theahaco/scaffold-stellar/pull/386))
20+
- update code for stellar-cli v25, soroban-sdk v25, and admin-sep API changes ([#383](https://github.com/theahaco/scaffold-stellar/pull/383))
21+
- use pedantic clippy and apply suggestions ([#379](https://github.com/theahaco/scaffold-stellar/pull/379))
22+
- use stellar-cli action instead of just setup ([#323](https://github.com/theahaco/scaffold-stellar/pull/323))
23+
- handle npm install errors ([#312](https://github.com/theahaco/scaffold-stellar/pull/312))
24+
25+
### Other
26+
27+
- Chore/accomodate oz v 0.6.0 ([#369](https://github.com/theahaco/scaffold-stellar/pull/369))
28+
- Enable to import contracts from soroban examples ([#327](https://github.com/theahaco/scaffold-stellar/pull/327))
29+
- fetch the most recent supported oz release ([#357](https://github.com/theahaco/scaffold-stellar/pull/357))
30+
- Feat/scaffold clean ([#352](https://github.com/theahaco/scaffold-stellar/pull/352))
31+
- *(deps)* bump cargo_toml from 0.20.5 to 0.22.3 ([#295](https://github.com/theahaco/scaffold-stellar/pull/295))
32+
- Update editions to 2024 across crates ([#292](https://github.com/theahaco/scaffold-stellar/pull/292))
33+
- *(deps)* bump itertools from 0.12.1 to 0.14.0 ([#296](https://github.com/theahaco/scaffold-stellar/pull/296))
34+
1035
## [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
1136

1237
### Fixed

0 commit comments

Comments
 (0)