From 4cc668be1ad002a2b36eb8d6a083e4a764110a91 Mon Sep 17 00:00:00 2001 From: "smartdeploy-deployer[bot]" <143835249+smartdeploy-deployer[bot]@users.noreply.github.com> Date: Sat, 4 Nov 2023 19:21:58 +0000 Subject: [PATCH] chore: release Signed-off-by: smartdeploy-deployer[bot] <143835249+smartdeploy-deployer[bot]@users.noreply.github.com> --- Cargo.lock | 6 +++--- crates/smartdeploy-build/CHANGELOG.md | 5 +++++ crates/smartdeploy-build/Cargo.toml | 2 +- crates/smartdeploy-cli/CHANGELOG.md | 5 +++++ crates/smartdeploy-cli/Cargo.toml | 4 ++-- crates/smartdeploy-macros/CHANGELOG.md | 5 +++++ crates/smartdeploy-macros/Cargo.toml | 4 ++-- crates/smartdeploy-sdk/Cargo.toml | 2 +- 8 files changed, 24 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3c95415..ee7b9a1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2536,7 +2536,7 @@ dependencies = [ [[package]] name = "smartdeploy-build" -version = "0.2.0" +version = "0.2.1" dependencies = [ "loam-build", "thiserror", @@ -2544,7 +2544,7 @@ dependencies = [ [[package]] name = "smartdeploy-cli" -version = "0.3.1" +version = "0.3.2" dependencies = [ "assert_cmd", "assert_fs", @@ -2559,7 +2559,7 @@ dependencies = [ [[package]] name = "smartdeploy-macros" -version = "0.1.3" +version = "0.1.4" dependencies = [ "quote", "smartdeploy-build", diff --git a/crates/smartdeploy-build/CHANGELOG.md b/crates/smartdeploy-build/CHANGELOG.md index 4867fcf..6d5a7c5 100644 --- a/crates/smartdeploy-build/CHANGELOG.md +++ b/crates/smartdeploy-build/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.1](https://github.com/TENK-DAO/smartdeploy/compare/smartdeploy-build-v0.2.0...smartdeploy-build-v0.2.1) - 2023-11-04 + +### Fixed +- default cargo manifest directory to pwd + ## [0.2.0](https://github.com/TENK-DAO/smartdeploy/compare/smartdeploy-build-v0.1.1...smartdeploy-build-v0.2.0) - 2023-10-30 ### Added diff --git a/crates/smartdeploy-build/Cargo.toml b/crates/smartdeploy-build/Cargo.toml index 49fd965..7b72ae9 100644 --- a/crates/smartdeploy-build/Cargo.toml +++ b/crates/smartdeploy-build/Cargo.toml @@ -4,7 +4,7 @@ description = "Crate for using smartdeploy to bulid smart contracts on soroban" authors = ["Willem Wyndham "] license = "Apache-2.0" readme = "../../README.md" -version = "0.2.0" +version = "0.2.1" edition = "2021" rust-version = "1.70" diff --git a/crates/smartdeploy-cli/CHANGELOG.md b/crates/smartdeploy-cli/CHANGELOG.md index 100251c..8826d6e 100644 --- a/crates/smartdeploy-cli/CHANGELOG.md +++ b/crates/smartdeploy-cli/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.2](https://github.com/TENK-DAO/smartdeploy/compare/smartdeploy-cli-v0.3.1...smartdeploy-cli-v0.3.2) - 2023-11-04 + +### Other +- updated the following local packages: smartdeploy-build + ## [0.3.1](https://github.com/TENK-DAO/smartdeploy/compare/smartdeploy-cli-v0.3.0...smartdeploy-cli-v0.3.1) - 2023-11-01 ### Added diff --git a/crates/smartdeploy-cli/Cargo.toml b/crates/smartdeploy-cli/Cargo.toml index bfd55c0..7cab38a 100644 --- a/crates/smartdeploy-cli/Cargo.toml +++ b/crates/smartdeploy-cli/Cargo.toml @@ -4,7 +4,7 @@ description = "Smartdeploy CLI" authors = ["Willem Wyndham "] license = "Apache-2.0" readme = "../../README.md" -version = "0.3.1" +version = "0.3.2" edition = "2021" rust-version = "1.70" autobins = false @@ -38,7 +38,7 @@ clap = { version = "4.1.8", features = [ thiserror = "1.0.31" tokio = { version = "1", features = ["full"] } shlex = "1.1.0" -smartdeploy-build = { path = "../smartdeploy-build", version = "0.2.0" } +smartdeploy-build = { path = "../smartdeploy-build", version = "0.2.1" } [dev-dependencies] assert_cmd = "2.0.4" diff --git a/crates/smartdeploy-macros/CHANGELOG.md b/crates/smartdeploy-macros/CHANGELOG.md index 7090fbe..6de1b7e 100644 --- a/crates/smartdeploy-macros/CHANGELOG.md +++ b/crates/smartdeploy-macros/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.4](https://github.com/TENK-DAO/smartdeploy/compare/smartdeploy-macros-v0.1.3...smartdeploy-macros-v0.1.4) - 2023-11-04 + +### Other +- updated the following local packages: smartdeploy-build + ## [0.1.3](https://github.com/TENK-DAO/smartdeploy/compare/smartdeploy-macros-v0.1.2...smartdeploy-macros-v0.1.3) - 2023-10-30 ### Other diff --git a/crates/smartdeploy-macros/Cargo.toml b/crates/smartdeploy-macros/Cargo.toml index 905c9d1..233d60d 100644 --- a/crates/smartdeploy-macros/Cargo.toml +++ b/crates/smartdeploy-macros/Cargo.toml @@ -3,7 +3,7 @@ name = "smartdeploy-macros" description = "Smartdeploy macros" readme = "../../README.md" license = "Apache-2.0" -version = "0.1.3" +version = "0.1.4" edition = "2021" rust-version = "1.69" @@ -14,5 +14,5 @@ doctest = false [dependencies] quote = "1.0" syn = "2.0.37" -smartdeploy-build = { path = "../smartdeploy-build", version = "0.2.0" } +smartdeploy-build = { path = "../smartdeploy-build", version = "0.2.1" } stellar-strkey = "0.0.7" diff --git a/crates/smartdeploy-sdk/Cargo.toml b/crates/smartdeploy-sdk/Cargo.toml index 1924022..afdba0f 100644 --- a/crates/smartdeploy-sdk/Cargo.toml +++ b/crates/smartdeploy-sdk/Cargo.toml @@ -12,4 +12,4 @@ crate-type = ["rlib"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -smartdeploy-macros = { path = "../smartdeploy-macros", version = "0.1.3" } +smartdeploy-macros = { path = "../smartdeploy-macros", version = "0.1.4" }