From 6743f4b4e73cb459ae670d7ba80116ba5df5e77e Mon Sep 17 00:00:00 2001 From: "smartdeploy-deployer[bot]" <143835249+smartdeploy-deployer[bot]@users.noreply.github.com> Date: Wed, 8 Nov 2023 17:17:10 +0000 Subject: [PATCH] chore: release Signed-off-by: smartdeploy-deployer[bot] <143835249+smartdeploy-deployer[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- contracts/core/Cargo.toml | 2 +- contracts/dev-core/Cargo.toml | 2 +- crates/smartdeploy-cli/CHANGELOG.md | 5 +++++ crates/smartdeploy-cli/Cargo.toml | 2 +- crates/smartdeploy-sdk/CHANGELOG.md | 5 +++++ crates/smartdeploy-sdk/Cargo.toml | 2 +- 7 files changed, 16 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2ec396b..a6bfdb7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2552,7 +2552,7 @@ dependencies = [ [[package]] name = "smartdeploy-cli" -version = "0.3.2" +version = "0.4.0" dependencies = [ "assert_cmd", "assert_fs", @@ -2583,7 +2583,7 @@ dependencies = [ [[package]] name = "smartdeploy-sdk" -version = "0.1.2" +version = "0.1.3" dependencies = [ "smartdeploy-macros", ] diff --git a/contracts/core/Cargo.toml b/contracts/core/Cargo.toml index ef843d6..2471efa 100644 --- a/contracts/core/Cargo.toml +++ b/contracts/core/Cargo.toml @@ -13,7 +13,7 @@ doctest = false [dependencies] loam-sdk = { workspace = true, features = ["loam-soroban-sdk"] } -smartdeploy-sdk = { path = "../../crates/smartdeploy-sdk", version = "0.1.2" } +smartdeploy-sdk = { path = "../../crates/smartdeploy-sdk", version = "0.1.3" } [dev_dependencies] diff --git a/contracts/dev-core/Cargo.toml b/contracts/dev-core/Cargo.toml index b18656c..24d1ef7 100644 --- a/contracts/dev-core/Cargo.toml +++ b/contracts/dev-core/Cargo.toml @@ -13,7 +13,7 @@ doctest = false [dependencies] loam-sdk = { workspace = true, features = ["loam-soroban-sdk"] } -smartdeploy-sdk = { path = "../../crates/smartdeploy-sdk", version = "0.1.2" } +smartdeploy-sdk = { path = "../../crates/smartdeploy-sdk", version = "0.1.3" } [dev_dependencies] diff --git a/crates/smartdeploy-cli/CHANGELOG.md b/crates/smartdeploy-cli/CHANGELOG.md index 8826d6e..b1dc747 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.4.0](https://github.com/TENK-DAO/smartdeploy/compare/smartdeploy-cli-v0.3.2...smartdeploy-cli-v0.4.0) - 2023-11-08 + +### Added +- *(CLI)* add Deploy subcommand that allows calling custom init function ([#28](https://github.com/TENK-DAO/smartdeploy/pull/28)) + ## [0.3.2](https://github.com/TENK-DAO/smartdeploy/compare/smartdeploy-cli-v0.3.1...smartdeploy-cli-v0.3.2) - 2023-11-04 ### Other diff --git a/crates/smartdeploy-cli/Cargo.toml b/crates/smartdeploy-cli/Cargo.toml index 79e6b26..63f2476 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.2" +version = "0.4.0" edition = "2021" rust-version = "1.70" autobins = false diff --git a/crates/smartdeploy-sdk/CHANGELOG.md b/crates/smartdeploy-sdk/CHANGELOG.md index baf6ef9..921753c 100644 --- a/crates/smartdeploy-sdk/CHANGELOG.md +++ b/crates/smartdeploy-sdk/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.3](https://github.com/TENK-DAO/smartdeploy/compare/smartdeploy-sdk-v0.1.2...smartdeploy-sdk-v0.1.3) - 2023-11-08 + +### Other +- release + ## [0.1.2](https://github.com/TENK-DAO/smartdeploy/compare/smartdeploy-sdk-v0.1.1...smartdeploy-sdk-v0.1.2) - 2023-10-30 ### Other diff --git a/crates/smartdeploy-sdk/Cargo.toml b/crates/smartdeploy-sdk/Cargo.toml index afdba0f..420467f 100644 --- a/crates/smartdeploy-sdk/Cargo.toml +++ b/crates/smartdeploy-sdk/Cargo.toml @@ -4,7 +4,7 @@ description = "SmartDeploy SDK helps ensure soroban contracts can be redeployed" edition = "2021" readme = "../../README.md" license = "Apache-2.0" -version = "0.1.2" +version = "0.1.3" [lib] crate-type = ["rlib"]