Skip to content

Commit

Permalink
chore: update Motoko version to 0.10.2 (#3441)
Browse files Browse the repository at this point in the history
## Suggested [CHANGELOG.md](https://github.com/dfinity/sdk/edit/chore-update-motoko-0.10.2/CHANGELOG.md) changes
```
## Dependencies

### Motoko

Updated Motoko to [0.10.2](https://github.com/dfinity/motoko/releases/tag/0.10.2)
  • Loading branch information
dfinity-bot authored Nov 14, 2023
1 parent 979662a commit 24d46de
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 23 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Added the following subcommands:

### Motoko

Updated Motoko to [0.10.1](https://github.com/dfinity/motoko/releases/tag/0.10.1)
Updated Motoko to [0.10.2](https://github.com/dfinity/motoko/releases/tag/0.10.2)

### Frontend canister

Expand All @@ -70,6 +70,10 @@ This incorporates the following executed proposals:
- [124858](https://dashboard.internetcomputer.org/proposal/124858)
- [124857](https://dashboard.internetcomputer.org/proposal/124857)

### Bitcoin canister

Updated Bitcoin canister to [release/2023-10-13](https://github.com/dfinity/bitcoin-canister/releases/tag/release%2F2023-10-13)

# 0.15.1

### feat: Added support for reserved_cycles and reserved_cycles_limit
Expand Down
24 changes: 12 additions & 12 deletions nix/sources.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"homepage": "https://rustsec.org",
"owner": "RustSec",
"repo": "advisory-db",
"rev": "0f4e16f7cd4339870985903cde44ea45ffe265c5",
"sha256": "03692n3y0q1ig2bp7dvpppkyn155rqjidhwxndla108q5bgw4p2y",
"rev": "3338fcfb59cea5fcd7d2a4e7fe24cbc7cb778003",
"sha256": "0fw5xrzafv061jj3lzrnqarbjcm1irzvl338yhkzw1k8firmki7d",
"type": "tarball",
"url": "https://github.com/RustSec/advisory-db/archive/0f4e16f7cd4339870985903cde44ea45ffe265c5.tar.gz",
"url": "https://github.com/RustSec/advisory-db/archive/3338fcfb59cea5fcd7d2a4e7fe24cbc7cb778003.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
},
"canister_sandbox-x86_64-darwin": {
Expand Down Expand Up @@ -160,27 +160,27 @@
"builtin": false,
"description": "The Motoko base library",
"owner": "dfinity",
"sha256": "0b8lsxb3j7qj6kzb32fbkf0a018jkisapcb8szwl8ad023lv3xv3",
"sha256": "12z4mr3r63nnncjqxrsxjhr1z2p8adg7zp48wbacb42jhs0mkfvl",
"type": "tarball",
"url": "https://github.com/dfinity/motoko/releases/download/0.10.1/motoko-base-library.tar.gz",
"url": "https://github.com/dfinity/motoko/releases/download/0.10.2/motoko-base-library.tar.gz",
"url_template": "https://github.com/dfinity/motoko/releases/download/<version>/motoko-base-library.tar.gz",
"version": "0.10.1"
"version": "0.10.2"
},
"motoko-x86_64-darwin": {
"builtin": false,
"sha256": "1inc2x9misqazgswfz7irvsjp4dkvab87j66yklnvy51w6pi3r7b",
"sha256": "1x49qwzrxc6dj5gik2hpi8l3xdnggqj2v9yvb6sfb7ff6gx3avc6",
"type": "file",
"url": "https://github.com/dfinity/motoko/releases/download/0.10.1/motoko-Darwin-x86_64-0.10.1.tar.gz",
"url": "https://github.com/dfinity/motoko/releases/download/0.10.2/motoko-Darwin-x86_64-0.10.2.tar.gz",
"url_template": "https://github.com/dfinity/motoko/releases/download/<version>/motoko-Darwin-x86_64-<version>.tar.gz",
"version": "0.10.1"
"version": "0.10.2"
},
"motoko-x86_64-linux": {
"builtin": false,
"sha256": "11jx3r0lw41x7xqajqqc7s9wvkr9kfpg5h38vr9bcvwfndg49flc",
"sha256": "1a1yv2awrd053qk3h9a34y887j2vfhb0ckrk25kjjx4ifdygp8ys",
"type": "file",
"url": "https://github.com/dfinity/motoko/releases/download/0.10.1/motoko-Linux-x86_64-0.10.1.tar.gz",
"url": "https://github.com/dfinity/motoko/releases/download/0.10.2/motoko-Linux-x86_64-0.10.2.tar.gz",
"url_template": "https://github.com/dfinity/motoko/releases/download/<version>/motoko-Linux-x86_64-<version>.tar.gz",
"version": "0.10.1"
"version": "0.10.2"
},
"replica-x86_64-darwin": {
"builtin": false,
Expand Down
3 changes: 2 additions & 1 deletion scripts/workflows/provision-darwin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ if [ "$E2E_TEST" = "tests-dfx/certificate.bash" ]; then
brew install mitmproxy
fi
if [ "$E2E_TEST" = "tests-dfx/deps.bash" ]; then
cargo install ic-wasm
cargo install cargo-binstall
cargo binstall -y ic-wasm
fi

# Exit temporary directory.
Expand Down
3 changes: 2 additions & 1 deletion scripts/workflows/provision-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ if [ "$E2E_TEST" = "tests-dfx/identity_encryption.bash" ] || [ "$E2E_TEST" = "te
sudo apt-get install --yes expect
fi
if [ "$E2E_TEST" = "tests-dfx/deps.bash" ]; then
cargo install ic-wasm
cargo install cargo-binstall
cargo binstall -y ic-wasm
fi

# Set environment variables.
Expand Down
16 changes: 8 additions & 8 deletions src/dfx/assets/dfx-asset-sources.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ url = 'https://download.dfinity.systems/ic/80a6745673a28ee53d257b3fe19dcd6b7efa9
sha256 = 'd42213aea42f1ae55623e7e437ef683e99c0a3a98c1bae7dc24db7c1577005e9'

[x86_64-darwin.motoko]
url = 'https://github.com/dfinity/motoko/releases/download/0.10.1/motoko-Darwin-x86_64-0.10.1.tar.gz'
sha256 = 'ebe411afe1a1f86de9f4c6c88396dab3912bf5cef17cc7f5fb0aeb585317ccc6'
url = 'https://github.com/dfinity/motoko/releases/download/0.10.2/motoko-Darwin-x86_64-0.10.2.tar.gz'
sha256 = '866d35fa33ce9de5b459dba72d247ecfb63e288a178a195f91cdb09e3fc789f4'
# The replica and canister_sandbox binaries must have the same revision.

[x86_64-darwin.replica]
Expand All @@ -52,8 +52,8 @@ url = 'https://download.dfinity.systems/ic/80a6745673a28ee53d257b3fe19dcd6b7efa9
sha256 = '73a6d72d82025abb58c28d6ada411ac40ed5b482017f409133f7ac5562899990'

[x86_64-darwin.motoko-base]
url = 'https://github.com/dfinity/motoko/releases/download/0.10.1/motoko-base-library.tar.gz'
sha256 = '27563ee89ad2b6c24642ccd9b569836cef2a0316d33bc3d2b4cc61ed7ec1017e'
url = 'https://github.com/dfinity/motoko/releases/download/0.10.2/motoko-base-library.tar.gz'
sha256 = 'cfa7950a3f452b0d8f42320061be09176a7aecee5a7851d913a1517a8116fd46'

[x86_64-darwin.ic-btc-canister]
url = 'https://github.com/dfinity/bitcoin-canister/releases/download/release%2F2023-10-13/ic-btc-canister.wasm.gz'
Expand Down Expand Up @@ -88,8 +88,8 @@ url = 'https://download.dfinity.systems/ic/80a6745673a28ee53d257b3fe19dcd6b7efa9
sha256 = 'eb5ea6cd768fda12d00f370665db132d66c262b35f1a513c2807f78881c1cb7a'

[x86_64-linux.motoko]
url = 'https://github.com/dfinity/motoko/releases/download/0.10.1/motoko-Linux-x86_64-0.10.1.tar.gz'
sha256 = '8cba445eb38e6fb652de68c0f2ae9b29cfcd933e0c63a9703f3d104e411e5d86'
url = 'https://github.com/dfinity/motoko/releases/download/0.10.2/motoko-Linux-x86_64-0.10.2.tar.gz'
sha256 = 'daa3fb7c739174296711334f0616745bc8839027432538261e05b4cc95d83ea8'
# The replica and canister_sandbox binaries must have the same revision.

[x86_64-linux.replica]
Expand All @@ -110,8 +110,8 @@ url = 'https://download.dfinity.systems/ic/80a6745673a28ee53d257b3fe19dcd6b7efa9
sha256 = 'a9e30c500fb108ab5247db0827868fb74914939a04519d08943440f12b020db8'

[x86_64-linux.motoko-base]
url = 'https://github.com/dfinity/motoko/releases/download/0.10.1/motoko-base-library.tar.gz'
sha256 = '27563ee89ad2b6c24642ccd9b569836cef2a0316d33bc3d2b4cc61ed7ec1017e'
url = 'https://github.com/dfinity/motoko/releases/download/0.10.2/motoko-base-library.tar.gz'
sha256 = 'cfa7950a3f452b0d8f42320061be09176a7aecee5a7851d913a1517a8116fd46'

[x86_64-linux.ic-btc-canister]
url = 'https://github.com/dfinity/bitcoin-canister/releases/download/release%2F2023-10-13/ic-btc-canister.wasm.gz'
Expand Down

0 comments on commit 24d46de

Please sign in to comment.