-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into gabor/nat-shift
- Loading branch information
Showing
56 changed files
with
5,625 additions
and
2,552 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: publish on mops | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
tags: | ||
- moc-* | ||
|
||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ZenVoich/setup-mops@v1 | ||
with: | ||
# Make sure you set the MOPS_IDENTITY_PEM secret in your repository settings https://docs.github.com/en/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository | ||
identity-pem: ${{ secrets.MOPS_IDENTITY_PEM }} | ||
- run: mops install | ||
- run: mops publish |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ jobs: | |
sync-branch: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Merge master -> next-moc | ||
uses: devmasx/[email protected] | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
## 0.10.3 | ||
* Added `ExperimentalInternetComputer.performanceCounter` function to get the raw performance counters (#600). | ||
|
||
* Added `Array.take` function to get some prefix of an array (#587). | ||
|
||
* Deprecated `TrieSet.mem` in favor of `TrieSet.contains` (#576). | ||
|
||
* bugfix: `Array.chain(as, f)` was incorrectly trapping when `f(a)` was an empty array (#599). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
[package] | ||
name = "base" | ||
version = "0.11.0" | ||
description = "The Motoko base library" | ||
repository = "https://github.com/dfinity/motoko-base" | ||
keywords = [ "base" ] | ||
license = "Apache-2.0" | ||
|
||
[dev-dependencies] | ||
base = "./" | ||
matchers = "https://github.com/kritzcreek/motoko-matchers#v1.3.0" | ||
matchers = "https://github.com/kritzcreek/motoko-matchers#v1.3.0@3dac8a071b69e4e651b25a7d9683fe831eb7cffd" | ||
|
||
[toolchain] | ||
moc = "0.11.0" | ||
wasmtime = "17.0.0" |
Oops, something went wrong.