From ef27e1e363fe945afec06147c1e56d855fc61d11 Mon Sep 17 00:00:00 2001 From: Kevin Wang Date: Tue, 27 Feb 2024 07:35:42 +0000 Subject: [PATCH] Bump crate versions --- Cargo.lock | 6 +++--- crates/pink/chain-extension/Cargo.toml | 4 ++-- crates/pink/pink-types/Cargo.toml | 2 +- crates/pink/pink/Cargo.toml | 4 ++-- e2e/contracts/check_system/Cargo.toml | 2 +- e2e/contracts/check_system/lib.rs | 4 ++-- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f33e13c93..b6d27f471 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -10467,7 +10467,7 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] name = "pink" -version = "0.4.0" +version = "0.4.1" dependencies = [ "dlmalloc", "hex", @@ -10501,7 +10501,7 @@ dependencies = [ [[package]] name = "pink-chain-extension" -version = "0.1.0" +version = "0.1.1" dependencies = [ "futures", "getrandom 0.2.12", @@ -10661,7 +10661,7 @@ dependencies = [ [[package]] name = "pink-types" -version = "0.1.1" +version = "0.1.2" dependencies = [ "parity-scale-codec", "scale-info", diff --git a/crates/pink/chain-extension/Cargo.toml b/crates/pink/chain-extension/Cargo.toml index c3c6e5310..5ffd18dce 100644 --- a/crates/pink/chain-extension/Cargo.toml +++ b/crates/pink/chain-extension/Cargo.toml @@ -3,11 +3,11 @@ description = "Mock pink chain extension for Phala pink contract" homepage = "https://github.com/Phala-Network/phala-blockchain" license = "Apache-2.0" name = "pink-chain-extension" -version = "0.1.0" +version = "0.1.1" edition = "2021" [dependencies] -pink = { version = "0.4.0", path = "../pink" } +pink = { version = "0.4.1", path = "../pink" } reqwest-env-proxy = { version = "0.1", path = "../../reqwest-env-proxy" } sp-core = { version = "21", features = ["full_crypto"] } reqwest = { version = "0.11", default-features = false, features = ["rustls-tls", "socks", "trust-dns"] } diff --git a/crates/pink/pink-types/Cargo.toml b/crates/pink/pink-types/Cargo.toml index 1b011196c..4587aa6ec 100644 --- a/crates/pink/pink-types/Cargo.toml +++ b/crates/pink/pink-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pink-types" -version = "0.1.1" +version = "0.1.2" edition = "2021" description = "Phala's ink! for writing phat contracts" license = "Apache-2.0" diff --git a/crates/pink/pink/Cargo.toml b/crates/pink/pink/Cargo.toml index 8e5b0da6f..51b2ae0c5 100644 --- a/crates/pink/pink/Cargo.toml +++ b/crates/pink/pink/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pink" -version = "0.4.0" +version = "0.4.1" edition = "2018" description = "Phala's ink! for writing phat contracts" license = "Apache-2.0" @@ -17,7 +17,7 @@ this-crate = { version = "0.1", path = "../../this-crate" } num_enum = { version = "0.6", default-features = false } serde = { version = "1.0", default-features = false, features = ["derive"] } hex = { version = "0.4", default-features = false, features = ["alloc"] } -pink-types = { version = "0.1", path = "../pink-types", default-features = false } +pink-types = { version = "0.1.2", path = "../pink-types", default-features = false } [dev-dependencies] pink-chain-extension = { default-features = false, path = "../chain-extension" } diff --git a/e2e/contracts/check_system/Cargo.toml b/e2e/contracts/check_system/Cargo.toml index dc79e5418..d1520af61 100755 --- a/e2e/contracts/check_system/Cargo.toml +++ b/e2e/contracts/check_system/Cargo.toml @@ -34,7 +34,7 @@ features = ["ink-as-dependency"] [dev-dependencies] drink = "0.8.0" -pink-drink = "0.1.1-dev.1" +pink-drink = "0.1.1" tracing-subscriber = "0.3.18" [build-dependencies] diff --git a/e2e/contracts/check_system/lib.rs b/e2e/contracts/check_system/lib.rs index 6a1811061..0ce1b9f50 100755 --- a/e2e/contracts/check_system/lib.rs +++ b/e2e/contracts/check_system/lib.rs @@ -3,7 +3,7 @@ #[macro_use] extern crate alloc; -pub use check_system::*; +pub use crate::check_system::*; #[ink::contract(env = PinkEnvironment)] mod check_system { @@ -447,9 +447,9 @@ mod check_system { #[cfg(test)] mod tests { use drink::session::Session; - use pink_drink::{Callable, DeployBundle, PinkRuntime}; use ink::codegen::TraitCallBuilder; use pink::chain_extension::JsValue; + use pink_drink::{Callable, DeployBundle, PinkRuntime}; use super::CheckSystemRef;