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.

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.4](https://github.com/theahaco/scaffold-stellar/compare/stellar-build-v0.0.3...stellar-build-v0.0.4) - 2025-10-20

### Added

- add network in target wasm path ([#213](https://github.com/theahaco/scaffold-stellar/pull/213))

### Other

- Add macro for `stellar_asset` ([#214](https://github.com/theahaco/scaffold-stellar/pull/214))

## [0.0.3](https://github.com/theahaco/scaffold-stellar/compare/stellar-build-v0.0.2...stellar-build-v0.0.3) - 2025-09-26

### Fixed
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.3"
version = "0.0.4"
edition = "2021"
description = "A library for gathering Contracts"
license = "Apache-2.0"
Expand Down
7 changes: 7 additions & 0 deletions crates/stellar-registry-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.13](https://github.com/theahaco/scaffold-stellar/compare/stellar-registry-cli-v0.0.12...stellar-registry-cli-v0.0.13) - 2025-10-20

### Other

- recommend to use --locked when installing binary crates ([#235](https://github.com/theahaco/scaffold-stellar/pull/235))
- Add website ([#212](https://github.com/theahaco/scaffold-stellar/pull/212))

## [0.0.12](https://github.com/theahaco/scaffold-stellar/compare/stellar-registry-cli-v0.0.11...stellar-registry-cli-v0.0.12) - 2025-10-03

### 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/theahaco/scaffold-stellar"
authors = ["Aha Labs <hello@theaha.co>"]
license = "Apache-2.0"
readme = "README.md"
version = "0.0.12"
version = "0.0.13"
edition = "2021"
rust-version = "1.70"
autobins = false
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.4](https://github.com/theahaco/scaffold-stellar/compare/stellar-registry-v0.0.3...stellar-registry-v0.0.4) - 2025-10-20

### Other

- Add macro for `stellar_asset` ([#214](https://github.com/theahaco/scaffold-stellar/pull/214))

## [0.0.3](https://github.com/theahaco/scaffold-stellar/compare/stellar-registry-v0.0.2...stellar-registry-v0.0.3) - 2025-09-26

### Fixed
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.3"
version = "0.0.4"
edition = "2021"
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.8" }
stellar-scaffold-macro = { path = "../stellar-scaffold-macro", version = "0.8.9" }
12 changes: 12 additions & 0 deletions crates/stellar-scaffold-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.14](https://github.com/theahaco/scaffold-stellar/compare/stellar-scaffold-cli-v0.0.13...stellar-scaffold-cli-v0.0.14) - 2025-10-20

### Added

- add network in target wasm path ([#213](https://github.com/theahaco/scaffold-stellar/pull/213))

### Other

- recommend to use --locked when installing binary crates ([#235](https://github.com/theahaco/scaffold-stellar/pull/235))
- Copy .env and Run git init ([#216](https://github.com/theahaco/scaffold-stellar/pull/216))
- *(stellar-registry-cli)* release v0.0.12 ([#208](https://github.com/theahaco/scaffold-stellar/pull/208))

## [0.0.13](https://github.com/theahaco/scaffold-stellar/compare/stellar-scaffold-cli-v0.0.12...stellar-scaffold-cli-v0.0.13) - 2025-10-03

### 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.13"
version = "0.0.14"
edition = "2021"
rust-version = "1.70"
autobins = false
Expand All @@ -27,7 +27,7 @@ doctest = false

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

## [Unreleased]

## [0.8.9](https://github.com/theahaco/scaffold-stellar/compare/stellar-scaffold-macro-v0.8.8...stellar-scaffold-macro-v0.8.9) - 2025-10-20

### Added

- export both admit and normal interface ([#218](https://github.com/theahaco/scaffold-stellar/pull/218))

### Fixed

- *(stellar-registry)* stellar_asset -> import_asset ([#215](https://github.com/theahaco/scaffold-stellar/pull/215))

### Other

- Add macro for `stellar_asset` ([#214](https://github.com/theahaco/scaffold-stellar/pull/214))

## [0.8.8](https://github.com/theahaco/scaffold-stellar/compare/stellar-scaffold-macro-v0.8.7...stellar-scaffold-macro-v0.8.8) - 2025-09-26

### Fixed
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.8"
version = "0.8.9"
edition = "2021"
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.3" }
stellar-build = { path = "../stellar-build", version = "0.0.4" }
proc-macro2 = "1.0"
syn = { version = "2", features = ["full"] }
quote = "1.0"
Expand Down
Loading