Skip to content
Open
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.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ lto = true


[workspace.lints.clippy]
unexpected_cfgs = "allow"
unexpected_cfgs = "allow"
14 changes: 14 additions & 0 deletions crates/loam-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.14.5](https://github.com/loambuild/loam/compare/loam-cli-v0.14.4...loam-cli-v0.14.5) - 2025-04-17

### Added

- Integrate Smartdeploy as loam registry ([#181](https://github.com/loambuild/loam/pull/181))

### Fixed

- clippy and others warning messages ([#184](https://github.com/loambuild/loam/pull/184))

### Other

- Add Loam ports of Soroban example contracts ([#174](https://github.com/loambuild/loam/pull/174))

## [0.14.4](https://github.com/loambuild/loam/compare/loam-cli-v0.14.3...loam-cli-v0.14.4) - 2025-01-22

### Added
Expand Down
4 changes: 2 additions & 2 deletions crates/loam-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ homepage = "https://github.com/loambuild/loam-sdk"
authors = ["Willem Wyndham <willem@ahalabs.dev>"]
license = "Apache-2.0"
readme = "../../README.md"
version = "0.14.4"
version = "0.14.5"
edition = "2021"
rust-version = "1.70"
autobins = false
Expand Down Expand Up @@ -79,4 +79,4 @@ walkdir = "2.3"


[features]
integration-tests = []
integration-tests = []
11 changes: 11 additions & 0 deletions crates/loam-sdk-macro/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8.7](https://github.com/loambuild/loam/compare/loam-sdk-macro-v0.8.6...loam-sdk-macro-v0.8.7) - 2025-04-17

### Fixed

- removes the requirement that `env` be imported ([#186](https://github.com/loambuild/loam/pull/186))
- ensure that storage keys are unique when exported ([#179](https://github.com/loambuild/loam/pull/179))

### Other

- Add Loam ports of Soroban example contracts ([#174](https://github.com/loambuild/loam/pull/174))

## [0.8.6](https://github.com/loambuild/loam/compare/loam-sdk-macro-v0.8.5...loam-sdk-macro-v0.8.6) - 2025-01-22

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/loam-sdk-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "loam-sdk-macro"
version = "0.8.6"
version = "0.8.7"
edition = "2021"
description = "Macros needed by loam-sdk"
license = "Apache-2.0"
Expand Down
10 changes: 10 additions & 0 deletions crates/loam-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.6.17](https://github.com/loambuild/loam/compare/loam-sdk-v0.6.16...loam-sdk-v0.6.17) - 2025-04-17

### Added

- add to_string and log that doesn't require a passed `env` ([#180](https://github.com/loambuild/loam/pull/180))

### Other

- Add Loam ports of Soroban example contracts ([#174](https://github.com/loambuild/loam/pull/174))

## [0.6.16](https://github.com/loambuild/loam/compare/loam-sdk-v0.6.15...loam-sdk-v0.6.16) - 2025-01-22

### Added
Expand Down
6 changes: 3 additions & 3 deletions crates/loam-sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "loam-sdk"
version = "0.6.16"
version = "0.6.17"
edition = "2021"
description = "SDK for writing smart contracts"
license = "Apache-2.0"
Expand All @@ -10,8 +10,8 @@ repository = "https://github.com/loambuild/loam/tree/main/crates/loam-sdk"
crate-type = ["rlib"]

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


[features]
Expand Down
14 changes: 14 additions & 0 deletions crates/loam-soroban-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.6.17](https://github.com/loambuild/loam/compare/loam-soroban-sdk-v0.6.16...loam-soroban-sdk-v0.6.17) - 2025-04-17

### Added

- add to_string and log that doesn't require a passed `env` ([#180](https://github.com/loambuild/loam/pull/180))

### Fixed

- clippy and others warning messages ([#184](https://github.com/loambuild/loam/pull/184))

### Other

- Add Loam ports of Soroban example contracts ([#174](https://github.com/loambuild/loam/pull/174))

## [0.6.16](https://github.com/loambuild/loam/compare/loam-soroban-sdk-v0.6.15...loam-soroban-sdk-v0.6.16) - 2025-01-22

### Added
Expand Down
4 changes: 2 additions & 2 deletions crates/loam-soroban-sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "loam-soroban-sdk"
version = "0.6.16"
version = "0.6.17"
edition = "2021"
description = "A wrapper around the soroban-sdk, providing some soroban specific traits"
license = "Apache-2.0"
Expand All @@ -10,7 +10,7 @@ repository = "https://github.com/loambuild/loam/tree/main/crates/loam-soroban-sd
crate-type = ["rlib"]

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

[target.'cfg(target_family="wasm")'.dependencies]
Expand Down
6 changes: 6 additions & 0 deletions crates/loam-subcontract-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8.0](https://github.com/loambuild/loam/compare/loam-subcontract-core-v0.7.9...loam-subcontract-core-v0.8.0) - 2025-04-17

### Added

- Integrate Smartdeploy as loam registry ([#181](https://github.com/loambuild/loam/pull/181))

## [0.7.9](https://github.com/loambuild/loam/compare/loam-subcontract-core-v0.7.8...loam-subcontract-core-v0.7.9) - 2025-01-22

### Other
Expand Down
4 changes: 2 additions & 2 deletions crates/loam-subcontract-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "loam-subcontract-core"
version = "0.7.9"
version = "0.8.0"
edition = "2021"
description = "Core Subcontract for redeployable contracts"
license = "Apache-2.0"
repository = "https://github.com/loambuild/loam/tree/main/crates/loam-subcontract-core"


[dependencies]
loam-sdk = { path = "../loam-sdk", version = "0.6.16", features = [
loam-sdk = { path = "../loam-sdk", version = "0.6.17", features = [
"loam-soroban-sdk",
] }

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

## [Unreleased]

## [0.7.3](https://github.com/loambuild/loam/compare/loam-subcontract-ft-v0.7.2...loam-subcontract-ft-v0.7.3) - 2025-04-17

### Other

- updated the following local packages: loam-sdk

## [0.7.2](https://github.com/loambuild/loam/compare/loam-subcontract-ft-v0.7.1...loam-subcontract-ft-v0.7.2) - 2025-01-22

### Other
Expand Down
4 changes: 2 additions & 2 deletions crates/loam-subcontract-ft/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "loam-subcontract-ft"
version = "0.7.2"
version = "0.7.3"
edition = "2021"
description = "A Subcontract for a fungible token"
license = "Apache-2.0"
repository = "https://github.com/loambuild/loam/tree/main/crates/loam-subcontract-ft"


[dependencies]
loam-sdk = { path = "../loam-sdk", version = "0.6.16", features = [
loam-sdk = { path = "../loam-sdk", version = "0.6.17", features = [
"loam-soroban-sdk",
] }

Expand Down
Loading