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)