Skip to content

Commit

Permalink
0.9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
edemaine committed Dec 31, 2024
1 parent 6fd5ec2 commit e1153f0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit e1153f0

Please sign in to comment.