Skip to content

Commit 18d9cd8

Browse files
chore: release
1 parent 9c6b74e commit 18d9cd8

File tree

14 files changed

+80
-19
lines changed

14 files changed

+80
-19
lines changed

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.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ lto = true
3737

3838

3939
[workspace.lints.clippy]
40-
unexpected_cfgs = "allow"
40+
unexpected_cfgs = "allow"

crates/loam-cli/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.14.5](https://github.com/loambuild/loam/compare/loam-cli-v0.14.4...loam-cli-v0.14.5) - 2025-04-17
10+
11+
### Added
12+
13+
- Integrate Smartdeploy as loam registry ([#181](https://github.com/loambuild/loam/pull/181))
14+
15+
### Fixed
16+
17+
- clippy and others warning messages ([#184](https://github.com/loambuild/loam/pull/184))
18+
19+
### Other
20+
21+
- Add Loam ports of Soroban example contracts ([#174](https://github.com/loambuild/loam/pull/174))
22+
923
## [0.14.4](https://github.com/loambuild/loam/compare/loam-cli-v0.14.3...loam-cli-v0.14.4) - 2025-01-22
1024

1125
### Added

crates/loam-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/loambuild/loam-sdk"
55
authors = ["Willem Wyndham <willem@ahalabs.dev>"]
66
license = "Apache-2.0"
77
readme = "../../README.md"
8-
version = "0.14.4"
8+
version = "0.14.5"
99
edition = "2021"
1010
rust-version = "1.70"
1111
autobins = false
@@ -79,4 +79,4 @@ walkdir = "2.3"
7979

8080

8181
[features]
82-
integration-tests = []
82+
integration-tests = []

crates/loam-sdk-macro/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.8.7](https://github.com/loambuild/loam/compare/loam-sdk-macro-v0.8.6...loam-sdk-macro-v0.8.7) - 2025-04-17
10+
11+
### Fixed
12+
13+
- removes the requirement that `env` be imported ([#186](https://github.com/loambuild/loam/pull/186))
14+
- ensure that storage keys are unique when exported ([#179](https://github.com/loambuild/loam/pull/179))
15+
16+
### Other
17+
18+
- Add Loam ports of Soroban example contracts ([#174](https://github.com/loambuild/loam/pull/174))
19+
920
## [0.8.6](https://github.com/loambuild/loam/compare/loam-sdk-macro-v0.8.5...loam-sdk-macro-v0.8.6) - 2025-01-22
1021

1122
### Added

crates/loam-sdk-macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "loam-sdk-macro"
3-
version = "0.8.6"
3+
version = "0.8.7"
44
edition = "2021"
55
description = "Macros needed by loam-sdk"
66
license = "Apache-2.0"

crates/loam-sdk/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.6.17](https://github.com/loambuild/loam/compare/loam-sdk-v0.6.16...loam-sdk-v0.6.17) - 2025-04-17
10+
11+
### Added
12+
13+
- add to_string and log that doesn't require a passed `env` ([#180](https://github.com/loambuild/loam/pull/180))
14+
15+
### Other
16+
17+
- Add Loam ports of Soroban example contracts ([#174](https://github.com/loambuild/loam/pull/174))
18+
919
## [0.6.16](https://github.com/loambuild/loam/compare/loam-sdk-v0.6.15...loam-sdk-v0.6.16) - 2025-01-22
1020

1121
### Added

crates/loam-sdk/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "loam-sdk"
3-
version = "0.6.16"
3+
version = "0.6.17"
44
edition = "2021"
55
description = "SDK for writing smart contracts"
66
license = "Apache-2.0"
@@ -10,8 +10,8 @@ repository = "https://github.com/loambuild/loam/tree/main/crates/loam-sdk"
1010
crate-type = ["rlib"]
1111

1212
[dependencies]
13-
loam-sdk-macro = { path = "../loam-sdk-macro", version = "0.8.6" }
14-
loam-soroban-sdk = { path = "../loam-soroban-sdk", version = "0.6.16", optional = true }
13+
loam-sdk-macro = { path = "../loam-sdk-macro", version = "0.8.7" }
14+
loam-soroban-sdk = { path = "../loam-soroban-sdk", version = "0.6.17", optional = true }
1515

1616

1717
[features]

crates/loam-soroban-sdk/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.6.17](https://github.com/loambuild/loam/compare/loam-soroban-sdk-v0.6.16...loam-soroban-sdk-v0.6.17) - 2025-04-17
10+
11+
### Added
12+
13+
- add to_string and log that doesn't require a passed `env` ([#180](https://github.com/loambuild/loam/pull/180))
14+
15+
### Fixed
16+
17+
- clippy and others warning messages ([#184](https://github.com/loambuild/loam/pull/184))
18+
19+
### Other
20+
21+
- Add Loam ports of Soroban example contracts ([#174](https://github.com/loambuild/loam/pull/174))
22+
923
## [0.6.16](https://github.com/loambuild/loam/compare/loam-soroban-sdk-v0.6.15...loam-soroban-sdk-v0.6.16) - 2025-01-22
1024

1125
### Added

crates/loam-soroban-sdk/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "loam-soroban-sdk"
3-
version = "0.6.16"
3+
version = "0.6.17"
44
edition = "2021"
55
description = "A wrapper around the soroban-sdk, providing some soroban specific traits"
66
license = "Apache-2.0"
@@ -10,7 +10,7 @@ repository = "https://github.com/loambuild/loam/tree/main/crates/loam-soroban-sd
1010
crate-type = ["rlib"]
1111

1212
[dependencies]
13-
loam-sdk-macro = { path = "../loam-sdk-macro", version = "0.8.6" }
13+
loam-sdk-macro = { path = "../loam-sdk-macro", version = "0.8.7" }
1414
soroban-sdk = { workspace = true }
1515

1616
[target.'cfg(target_family="wasm")'.dependencies]

0 commit comments

Comments
 (0)