diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 18e408c182..2cb55a9373 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -63,7 +63,7 @@ jobs: fail-fast: false matrix: backend: ["ic-ref", "replica"] - # macos-latest is currently macos-11 ubuntu-latest is currently ubuntu-20.04 + # macos-latest is currently macos-11, ubuntu-latest is currently ubuntu-20.04 # ubuntu-18.04 not supported due to: # /home/runner/.cache/dfinity/versions/0.8.3-34-g36e39809/ic-starter: # /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29' not found diff --git a/CHANGELOG.md b/CHANGELOG.md index a06beb30c3..54ae21b770 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -720,7 +720,7 @@ See [Upgrade compatibility](https://smartcontracts.org/docs/language-guide/compa ### feat: Unified environment variables across build commands -The three canister types that use a custom build tool - `assets`, `rust`, and `custom` - now all support the same set of environment variables during the build task: +The three canister types that use a custom build tool - `assets`, `rust`, and `custom` - now all support the same set of environment variables during the build task: * `DFX_VERSION` - The version of DFX that was used to build the canister. * `DFX_NETWORK` - The network name being built for. Usually `ic` or `local`. @@ -1019,7 +1019,7 @@ You can now declare "rust" canisters in dfx.json. ``` Don't forget to place a `Cargo.toml` in your project root. -Then dfx will build the rust canister with your rust toolchain. +Then dfx will build the rust canister with your rust toolchain. Please also make sure that you have added the WebAssembly compilation target. ``` bash @@ -1312,7 +1312,7 @@ Added defensive checks to the wallet's remove_controller and deauthorize methods When using `dfx canister sign` to generate a update message, a corresponding request_status message is also signed and append to the json as `signed_request_status`. Then after sending the update message, the user can check the request_status using -`dfx canister send message.json --status`. +`dfx canister send message.json --status`. ### fix: wallet will not proxy dfx canister call by default diff --git a/Cargo.lock b/Cargo.lock index a90f7d0706..92285f7459 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -741,7 +741,7 @@ dependencies = [ [[package]] name = "dfx" -version = "0.11.0" +version = "0.11.1" dependencies = [ "actix", "aes-gcm", diff --git a/public/manifest.json b/public/manifest.json index ca242a219d..d04451f5de 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -1,6 +1,6 @@ { "tags": { - "latest": "0.11.0" + "latest": "0.11.1" }, "versions": [ "0.5.0", @@ -57,6 +57,7 @@ "0.9.3", "0.10.0", "0.10.1", - "0.11.0" + "0.11.0", + "0.11.1" ] } diff --git a/src/dfx/Cargo.toml b/src/dfx/Cargo.toml index ff41f6da3c..b777df9f7e 100644 --- a/src/dfx/Cargo.toml +++ b/src/dfx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dfx" -version = "0.11.0" +version = "0.11.1" authors = ["DFINITY Team"] edition = "2018" build = "assets/build.rs"