Skip to content

Commit

Permalink
chore: release (#161)
Browse files Browse the repository at this point in the history
Co-authored-by: loambuild-app[bot] <143737492+loambuild-app[bot]@users.noreply.github.com>
  • Loading branch information
loambuild-app[bot] authored Sep 26, 2024
1 parent db2414f commit d7bc451
Show file tree
Hide file tree
Showing 11 changed files with 37 additions and 21 deletions.
16 changes: 4 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions crates/loam-cli/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.14.2](https://github.com/loambuild/loam/compare/loam-cli-v0.14.1...loam-cli-v0.14.2) - 2024-09-24

### Added

- add `stellar_asset!` macro. Resolves a token client at compile ([#133](https://github.com/loambuild/loam/pull/133))

## [0.14.1](https://github.com/loambuild/loam/compare/loam-cli-v0.14.0...loam-cli-v0.14.1) - 2024-09-24

### Added
Expand Down
2 changes: 1 addition & 1 deletion 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 <[email protected]>"]
license = "Apache-2.0"
readme = "../../README.md"
version = "0.14.1"
version = "0.14.2"
edition = "2021"
rust-version = "1.70"
autobins = false
Expand Down
6 changes: 6 additions & 0 deletions crates/loam-sdk-macro/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.4](https://github.com/loambuild/loam/compare/loam-sdk-macro-v0.8.3...loam-sdk-macro-v0.8.4) - 2024-09-24

### Added

- add `stellar_asset!` macro. Resolves a token client at compile ([#133](https://github.com/loambuild/loam/pull/133))

## [0.8.3](https://github.com/loambuild/loam/compare/loam-sdk-macro-v0.8.2...loam-sdk-macro-v0.8.3) - 2024-08-02

### Other
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.3"
version = "0.8.4"
edition = "2021"
description = "Macros needed by loam-sdk"
license = "Apache-2.0"
Expand Down
6 changes: 6 additions & 0 deletions crates/loam-sdk/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.6.15](https://github.com/loambuild/loam/compare/loam-sdk-v0.6.14...loam-sdk-v0.6.15) - 2024-09-24

### Other

- updated the following local packages: loam-sdk-macro, loam-soroban-sdk

## [0.6.14](https://github.com/loambuild/loam/compare/loam-sdk-v0.6.13...loam-sdk-v0.6.14) - 2024-08-02

### Other
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.14"
version = "0.6.15"
edition = "2021"
description = "SDK for writing smart contracts"
license = "Apache-2.0"
Expand All @@ -13,8 +13,8 @@ crate-type = ["rlib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
loam-sdk-macro = { path = "../loam-sdk-macro", version = "0.8.3" }
loam-soroban-sdk = { path = "../loam-soroban-sdk", version = "0.6.14", optional = true }
loam-sdk-macro = { path = "../loam-sdk-macro", version = "0.8.4" }
loam-soroban-sdk = { path = "../loam-soroban-sdk", version = "0.6.15", optional = true }


[features]
Expand Down
6 changes: 6 additions & 0 deletions crates/loam-soroban-sdk/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.6.15](https://github.com/loambuild/loam/compare/loam-soroban-sdk-v0.6.14...loam-soroban-sdk-v0.6.15) - 2024-09-24

### Added

- add `stellar_asset!` macro. Resolves a token client at compile ([#133](https://github.com/loambuild/loam/pull/133))

## [0.6.14](https://github.com/loambuild/loam/compare/loam-soroban-sdk-v0.6.13...loam-soroban-sdk-v0.6.14) - 2024-08-02

### Other
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.14"
version = "0.6.15"
edition = "2021"
description = "A wrapper around the soroban-sdk, providing some soroban specific traits"
license = "Apache-2.0"
Expand All @@ -13,7 +13,7 @@ crate-type = ["rlib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

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


Expand Down
2 changes: 1 addition & 1 deletion crates/loam-subcontract-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repository = "https://github.com/loambuild/loam/tree/main/crates/loam-subcontrac


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

Expand Down
2 changes: 1 addition & 1 deletion crates/loam-subcontract-ft/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repository = "https://github.com/loambuild/loam/tree/main/crates/loam-subcontrac


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

Expand Down

0 comments on commit d7bc451

Please sign in to comment.