Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
loambuild-app[bot] authored Dec 11, 2024
1 parent e0d97be commit f78c10a
Show file tree
Hide file tree
Showing 13 changed files with 55 additions and 17 deletions.
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.

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

## [Unreleased]

## [0.14.4](https://github.com/loambuild/loam/compare/loam-cli-v0.14.3...loam-cli-v0.14.4) - 2024-12-11

### Other

- update soroban-sdk to v22 ([#175](https://github.com/loambuild/loam/pull/175))
- upgrade to stellar-cli v22.0 ([#173](https://github.com/loambuild/loam/pull/173))

## [0.14.3](https://github.com/loambuild/loam/compare/loam-cli-v0.14.2...loam-cli-v0.14.3) - 2024-09-30

### Fixed
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.3"
version = "0.14.4"
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.6](https://github.com/loambuild/loam/compare/loam-sdk-macro-v0.8.5...loam-sdk-macro-v0.8.6) - 2024-12-11

### Other

- upgrade to stellar-cli v22.0 ([#173](https://github.com/loambuild/loam/pull/173))

## [0.8.5](https://github.com/loambuild/loam/compare/loam-sdk-macro-v0.8.4...loam-sdk-macro-v0.8.5) - 2024-09-30

### Fixed
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.5"
version = "0.8.6"
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.16](https://github.com/loambuild/loam/compare/loam-sdk-v0.6.15...loam-sdk-v0.6.16) - 2024-12-11

### Other

- release (#162)

## [0.6.15](https://github.com/loambuild/loam/compare/loam-sdk-v0.6.14...loam-sdk-v0.6.15) - 2024-09-24

### 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.15"
version = "0.6.16"
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.5" }
loam-soroban-sdk = { path = "../loam-soroban-sdk", version = "0.6.15", optional = true }
loam-sdk-macro = { path = "../loam-sdk-macro", version = "0.8.6" }
loam-soroban-sdk = { path = "../loam-soroban-sdk", version = "0.6.16", optional = true }

[target.'cfg(not(target_family="wasm"))'.dependencies]
soroban-sdk = { workspace = true, features = ["testutils"], optional = true }
Expand Down
7 changes: 7 additions & 0 deletions crates/loam-soroban-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.6.16](https://github.com/loambuild/loam/compare/loam-soroban-sdk-v0.6.15...loam-soroban-sdk-v0.6.16) - 2024-12-11

### Other

- upgrade to stellar-cli v22.0 ([#173](https://github.com/loambuild/loam/pull/173))
- release (#162)

## [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
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.15"
version = "0.6.16"
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.5" }
loam-sdk-macro = { path = "../loam-sdk-macro", version = "0.8.6" }
soroban-sdk = { workspace = true, default-features = false }

[target.'cfg(not(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.7.9](https://github.com/loambuild/loam/compare/loam-subcontract-core-v0.7.8...loam-subcontract-core-v0.7.9) - 2024-12-11

### Other

- updated the following local packages: loam-sdk

## [0.7.8](https://github.com/loambuild/loam/compare/loam-subcontract-core-v0.7.7...loam-subcontract-core-v0.7.8) - 2024-09-30

### 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.8"
version = "0.7.9"
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.15", features = [
loam-sdk = { path = "../loam-sdk", version = "0.6.16", 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.2](https://github.com/loambuild/loam/compare/loam-subcontract-ft-v0.7.1...loam-subcontract-ft-v0.7.2) - 2024-12-11

### Other

- updated the following local packages: loam-sdk

## [0.7.1](https://github.com/loambuild/loam/compare/loam-subcontract-ft-v0.7.0...loam-subcontract-ft-v0.7.1) - 2024-09-30

### 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.1"
version = "0.7.2"
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.15", features = [
loam-sdk = { path = "../loam-sdk", version = "0.6.16", features = [
"loam-soroban-sdk",
] }

Expand Down

0 comments on commit f78c10a

Please sign in to comment.