Skip to content

Commit

Permalink
Bump crate versions
Browse files Browse the repository at this point in the history
  • Loading branch information
kvinwang committed Feb 27, 2024
1 parent 14afeb4 commit ef27e1e
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crates/pink/chain-extension/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/pink/pink-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions crates/pink/pink/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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" }
Expand Down
2 changes: 1 addition & 1 deletion e2e/contracts/check_system/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions e2e/contracts/check_system/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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;

Expand Down

0 comments on commit ef27e1e

Please sign in to comment.