Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

5 changes: 3 additions & 2 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"tags": {
"latest": "0.11.0"
"latest": "0.11.1"
},
"versions": [
"0.5.0",
Expand Down Expand Up @@ -57,6 +57,7 @@
"0.9.3",
"0.10.0",
"0.10.1",
"0.11.0"
"0.11.0",
"0.11.1"
]
}
2 changes: 1 addition & 1 deletion src/dfx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dfx"
version = "0.11.0"
version = "0.11.1"
authors = ["DFINITY Team"]
edition = "2018"
build = "assets/build.rs"
Expand Down