From b84b39f1d9298304f82523d19ba9d5a83bb45dd6 Mon Sep 17 00:00:00 2001 From: kwt <4344285+kwtalley@users.noreply.github.com> Date: Mon, 30 Sep 2024 02:47:18 -0500 Subject: [PATCH 1/2] set final versions in cargo --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 004511a..b9bcf7a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,8 +19,8 @@ cosmwasm-std = { version = "2.1.3", default-features = false, features = ["cosmw cw-storage-plus = { version = "2.0.0" } ### ProvWasm -provwasm-mocks = { git = "https://github.com/provenance-io/provwasm.git", branch = "main" } -provwasm-std = { git = "https://github.com/provenance-io/provwasm.git", branch = "main" } +provwasm-mocks = { version = "2.4.0" } +provwasm-std = { version = "2.4.0" } test-tube-prov = { path = "packages/test-tube" } base64 = "0.22.0" From 7db91ceef6780ecf715d5580a22bf3680ef13061 Mon Sep 17 00:00:00 2001 From: kwt <4344285+kwtalley@users.noreply.github.com> Date: Mon, 30 Sep 2024 03:43:50 -0500 Subject: [PATCH 2/2] fix root cargo dep version --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b9bcf7a..e4a437d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,8 @@ cw-storage-plus = { version = "2.0.0" } ### ProvWasm provwasm-mocks = { version = "2.4.0" } provwasm-std = { version = "2.4.0" } -test-tube-prov = { path = "packages/test-tube" } +provwasm-test-tube = { version = "0.2.0", path = "packages/provwasm-test-tube" } +test-tube-prov = { version = "0.2.0", path = "packages/test-tube" } base64 = "0.22.0" chrono = { version = "0.4.37", default-features = false }