From e6d5d0392bfd6ddc160c35ae2c7f2b66f14e790b Mon Sep 17 00:00:00 2001 From: Gabor Greif Date: Sat, 6 Jul 2024 15:35:57 +0200 Subject: [PATCH] chore: Releasing 0.11.2 (#4603) --- Changelog.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Changelog.md b/Changelog.md index 01a18ca409c..2b0da486a71 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,17 +1,19 @@ # Motoko compiler changelog -## 0.11.2 (to come) +## 0.11.2 (2024-07-06) * motoko (`moc`) - * deprecation: Deprecate use of base library 'ExperimentalStableMemory' (ESM) (#4573). + * deprecation: Deprecate the use of base library's `ExperimentalStableMemory` (ESM) (#4573). New `moc` flag `--experimental-stable-memory ` controls the level of deprecation: * n < 0: error on use of stable memory primitives. * n = 0: warn on use of stable memory primitives. * n > 1: warning-less use of stable memory primitives (for legacy applications). - Users of ESM should consider migrating their code to use isolated regions (library 'Region.mo') instead. - * bugfix: Fix the detection of unused declarations in switch and catch cases (#4560). - * improvement: Only warn on unused identifiers if type checking is error-free (#4560). + Users of ESM should consider migrating their code to use isolated regions (library `Region.mo`) instead. + + * bugfix: Fix the detection of unused declarations in switch and catch alternatives (#4560). + + * improvement: Only warn on unused identifiers if type checking is error-free (#4561). ## 0.11.1 (2024-03-15)