From e1153f00ffa3c145331ab5e0d8eba1e91c25e2aa Mon Sep 17 00:00:00 2001 From: Erik Demaine Date: Tue, 31 Dec 2024 08:38:46 -0500 Subject: [PATCH] 0.9.4 --- CHANGELOG.md | 11 +++++++++++ package.json | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c51981a8..bda93af3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ This changelog is generated automatically by [`build/changelog.civet`](build/cha For each version of Civet, it lists and links to all incorporated PRs, as well as a full diff and commit list. +## 0.9.4 (2024-12-31, [diff](https://github.com/DanielXMoore/Civet/compare/v0.9.3...v0.9.4), [commits](https://github.com/DanielXMoore/Civet/commits/v0.9.4)) +* Multiple items and spreads in array comprehensions [[#1656](https://github.com/DanielXMoore/Civet/pull/1656)] +* `for concat` reduction for concatenating arrays, `for first` reduction for finding elements [[#1657](https://github.com/DanielXMoore/Civet/pull/1657)] +* `for` reduction fixes: `each` supports implicit body, `for*` is an error [[#1661](https://github.com/DanielXMoore/Civet/pull/1661)] +* Fix top-level `await`/`yield` in `iife` mode (including REPL and Playground) [[#1662](https://github.com/DanielXMoore/Civet/pull/1662)] +* Pattern `name^: value` binds `name`, while `name: value` never does [[#1663](https://github.com/DanielXMoore/Civet/pull/1663)] + * BREAKING CHANGE: Pattern matching with `{name: literal}` no longer binds `name`; use `{name^: literal}` to bind. +* Parallel testing via `CIVET_THREADS` (Mocha's `--parallel`) [[#1665](https://github.com/DanielXMoore/Civet/pull/1665)] +* Range literal improvements: faster, fix doubly strict [[#1664](https://github.com/DanielXMoore/Civet/pull/1664)] +* Worker threads fixes and SourceMap revamp [[#1666](https://github.com/DanielXMoore/Civet/pull/1666)] + ## 0.9.3 (2024-12-22, [diff](https://github.com/DanielXMoore/Civet/compare/v0.9.2...v0.9.3), [commits](https://github.com/DanielXMoore/Civet/commits/v0.9.3)) * `coffeeClasses` improved compatibility: private static class fields via `=`, bound methods via `=>` , `constructor` shouldn't `return` [[#1650](https://github.com/DanielXMoore/Civet/pull/1650)] * Pin parameter `^p` assigns function parameter to outer variable [[#1651](https://github.com/DanielXMoore/Civet/pull/1651)] diff --git a/package.json b/package.json index 573c023c..728d609a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@danielx/civet", "type": "commonjs", - "version": "0.9.3", + "version": "0.9.4", "description": "CoffeeScript style syntax for TypeScript", "main": "dist/main.js", "module": "dist/main.mjs",