Skip to content

Commit be365aa

Browse files
chore: release
1 parent 7a0ea39 commit be365aa

File tree

13 files changed

+98
-16
lines changed

13 files changed

+98
-16
lines changed

Cargo.lock

Lines changed: 5 additions & 5 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: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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.1-alpha.1](https://github.com/AhaLabs/scaffold-stellar/compare/stellar-build-v0.0.1-alpha...stellar-build-v0.0.1-alpha.1) - 2025-05-30
11+
12+
### Other
13+
14+
- registry install ([#67](https://github.com/AhaLabs/scaffold-stellar/pull/67))

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.1-alpha"
3+
version = "0.0.1-alpha.1"
44
edition = "2021"
55
description = "A library for gathering Contracts"
66
license = "Apache-2.0"

crates/stellar-registry-cli/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.0.1-alpha.3](https://github.com/AhaLabs/scaffold-stellar/compare/stellar-registry-cli-v0.0.1-alpha.2...stellar-registry-cli-v0.0.1-alpha.3) - 2025-05-30
11+
12+
### Added
13+
14+
- Extending and documenting contract metadata ([#78](https://github.com/AhaLabs/scaffold-stellar/pull/78))
15+
- update resolution of contract id to prepare for deploying to main net ([#74](https://github.com/AhaLabs/scaffold-stellar/pull/74))
16+
17+
### Other
18+
19+
- registry install ([#67](https://github.com/AhaLabs/scaffold-stellar/pull/67))
20+
1021
## [0.0.1-alpha.2](https://github.com/AhaLabs/scaffold-stellar/compare/stellar-registry-cli-v0.0.1-alpha.1...stellar-registry-cli-v0.0.1-alpha.2) - 2025-05-19
1122

1223
### 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/ahalabs/scaffold-stellar"
55
authors = ["Aha Labs <hello@ahalabs.dev>"]
66
license = "Apache-2.0"
77
readme = "../../README.md"
8-
version = "0.0.1-alpha.2"
8+
version = "0.0.1-alpha.3"
99
edition = "2021"
1010
rust-version = "1.70"
1111
autobins = false
@@ -26,7 +26,7 @@ path = "src/lib.rs"
2626
doctest = false
2727

2828
[dependencies]
29-
stellar-build = { path = "../stellar-build", version = "0.0.1-alpha" }
29+
stellar-build = { path = "../stellar-build", version = "0.0.1-alpha.1" }
3030

3131
clap = { version = "4.1.8", features = [
3232
"derive",
@@ -58,4 +58,4 @@ predicates = "2.1.5"
5858
stellar-scaffold-test = { path = "../stellar-scaffold-test" }
5959

6060
[features]
61-
integration-tests = []
61+
integration-tests = []
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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.1-alpha.1](https://github.com/AhaLabs/scaffold-stellar/compare/stellar-registry-v0.0.1-alpha...stellar-registry-v0.0.1-alpha.1) - 2025-05-30
11+
12+
### Other
13+
14+
- updated the following local packages: stellar-scaffold-macro

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.1-alpha"
3+
version = "0.0.1-alpha.1"
44
edition = "2021"
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.6" }
16+
stellar-scaffold-macro = { path = "../stellar-scaffold-macro", version = "0.8.7" }

crates/stellar-scaffold-cli/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.0.1-alpha.3](https://github.com/AhaLabs/scaffold-stellar/compare/stellar-scaffold-cli-v0.0.1-alpha.2...stellar-scaffold-cli-v0.0.1-alpha.3) - 2025-05-30
11+
12+
### Added
13+
14+
- Extending and documenting contract metadata ([#78](https://github.com/AhaLabs/scaffold-stellar/pull/78))
15+
- [**breaking**] Change 'dev' to 'watch' ([#56](https://github.com/AhaLabs/scaffold-stellar/pull/56))
16+
17+
### Other
18+
19+
- registry install ([#67](https://github.com/AhaLabs/scaffold-stellar/pull/67))
20+
1021
## [0.0.1-alpha.2](https://github.com/AhaLabs/scaffold-stellar/compare/stellar-scaffold-cli-v0.0.1-alpha.1...stellar-scaffold-cli-v0.0.1-alpha.2) - 2025-05-19
1122

1223
### Added

crates/stellar-scaffold-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ homepage = "https://github.com/ahalabs/scaffold-stellar"
55
authors = ["Aha Labs <hello@ahalabs.dev>"]
66
license = "Apache-2.0"
77
readme = "../../README.md"
8-
version = "0.0.1-alpha.2"
8+
version = "0.0.1-alpha.3"
99
edition = "2021"
1010
rust-version = "1.70"
1111
autobins = false
@@ -26,7 +26,7 @@ path = "src/lib.rs"
2626
doctest = false
2727

2828
[dependencies]
29-
stellar-build = { path = "../stellar-build", version = "0.0.1-alpha" }
29+
stellar-build = { path = "../stellar-build", version = "0.0.1-alpha.1" }
3030
stellar-cli = { workspace = true}
3131
clap = { version = "4.1.8", features = [
3232
"derive",
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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.8.7](https://github.com/AhaLabs/scaffold-stellar/compare/stellar-scaffold-macro-v0.8.6...stellar-scaffold-macro-v0.8.7) - 2025-05-30
11+
12+
### Other
13+
14+
- updated the following local packages: stellar-build

0 commit comments

Comments
 (0)