Skip to content

Commit

Permalink
Merge branch 'mwe/pocketic_v3.0.1' into 'master'
Browse files Browse the repository at this point in the history
chore: PocketIC server version 3.0.1 and library version 2.2.0

 

See merge request dfinity-lab/public/ic!17671
  • Loading branch information
michael-weigelt committed Feb 14, 2024
2 parents 1b4fcf4 + 2bae738 commit 0e49fd1
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion packages/pocket-ic/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ rust_library(
name = "pocket-ic",
srcs = glob(["src/**"]),
proc_macro_deps = MACRO_DEPENDENCIES,
version = "2.1.0",
version = "2.2.0",
deps = DEPENDENCIES,
)

Expand Down
2 changes: 2 additions & 0 deletions packages/pocket-ic/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## 2.2.0 - 2024-02-14

### Added
- a new `canister_status` function to request a canister's status

Expand Down
4 changes: 2 additions & 2 deletions packages/pocket-ic/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "pocket-ic"
version = "2.1.0"
version = "2.2.0"
license = "Apache-2.0"
description = "PocketIC: A Canister Smart Contract Testing Platform"
repository = "https://github.com/dfinity/ic/packages/pocket-ic"
repository = "https://github.com/dfinity/ic/tree/master/packages/pocket-ic"
documentation = "https://docs.rs/pocket-ic/latest/pocket_ic/"
readme = "README.md"
categories = ["emulators", "development-tools::testing", "wasm"]
Expand Down
2 changes: 1 addition & 1 deletion rs/pocket_ic_server/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ rust_library(
]),
crate_name = "pocket_ic_server",
proc_macro_deps = MACRO_DEPENDENCIES,
version = "3.0.0",
version = "3.0.1",
deps = LIB_DEPENDENCIES,
)

Expand Down
5 changes: 4 additions & 1 deletion rs/pocket_ic_server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## 3.0.1 - 2024-02-14

### Fixed
- traps in tECDSA calls

- server rejects jsons containing unimplemented variants of SubnetSpec
- inspect_message no longer panics when call is rejected

## 3.0.0 - 2024-02-06

Expand Down
2 changes: 1 addition & 1 deletion rs/pocket_ic_server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pocket-ic-server"
version = "3.0.0"
version = "3.0.1"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion rs/pocket_ic_server/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const LOG_DIR_PATH_ENV_NAME: &str = "POCKET_IC_LOG_DIR";
const LOG_DIR_LEVELS_ENV_NAME: &str = "POCKET_IC_LOG_DIR_LEVELS";

#[derive(Parser)]
#[clap(version = "3.0.0")]
#[clap(version = "3.0.1")]
struct Args {
/// If you use PocketIC from the command line, you should not use this flag.
/// Client libraries use this flag to provide a common identifier (the process ID of the test
Expand Down

0 comments on commit 0e49fd1

Please sign in to comment.