Skip to content

Commit

Permalink
chore: Releasing 0.10.3 (#4337)
Browse files Browse the repository at this point in the history
  • Loading branch information
ggreif authored Dec 20, 2023
1 parent b397789 commit 5d2dce9
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,29 @@
# Motoko compiler changelog

## 0.10.3 (2023-12-20)

* motoko (`moc`)

* Include doc comments to Candid interfaces generated via the `--idl` flag (#4334).

* bugfix: fix broken implementations of `Region.loadNat32`, `Region.storeNat32`, `Region.loadInt32`, `Region.storeInt32` (#4335).
Values previously stored with the broken 32-bit operations must be loaded with care.
If bit 0 is clear, the original value can be obtained by an arithmetic shift right by 1 bit.
If bit 0 is set, the value cannot be trusted and should be ignored
(it encodes some transient address of a boxed value).

* motoko-base

* Added `ExperimentalInternetComputer.performanceCounter` function to get the raw performance
counters (dfinity/motoko-base⁠#600).

* Added `Array.take` function to get some prefix of an array (dfinity/motoko-base⁠#587).

* Deprecated `TrieSet.mem` in favor of `TrieSet.has` (dfinity/motoko-base⁠#576).

* bugfix: `Array.chain(as, f)` was incorrectly trapping when `f(a)` was an empty array
(dfinity/motoko-base⁠#599).

## 0.10.2 (2023-11-12)

* motoko (`moc`)
Expand Down

0 comments on commit 5d2dce9

Please sign in to comment.