From c5a374ef8fac6fddc005a07b2384c953f8230d46 Mon Sep 17 00:00:00 2001 From: Erik Demaine Date: Tue, 12 Nov 2024 17:37:44 -0500 Subject: [PATCH] 0.8.15 --- CHANGELOG.md | 10 ++++++++++ package.json | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2dc41a7a..d7113508 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ 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.8.15 (2024-11-12, [diff](https://github.com/DanielXMoore/Civet/compare/v0.8.14...v0.8.15), [commits](https://github.com/DanielXMoore/Civet/commits/v0.8.15)) +* Fix typo in Coffeescript comparison [[#1589](https://github.com/DanielXMoore/Civet/pull/1589)] +* Fix range `for` loop with complex left-hand side [[#1592](https://github.com/DanielXMoore/Civet/pull/1592)] +* Type's postfix `if` must be on the same line [[#1591](https://github.com/DanielXMoore/Civet/pull/1591)] +* Fix missing parentheses in one-line `if` condition [[#1595](https://github.com/DanielXMoore/Civet/pull/1595)] +* LSP: fix autocompletion details error message [[#1596](https://github.com/DanielXMoore/Civet/pull/1596)] +* Fix reduction inside conditions, and other subtle aliasing issues [[#1598](https://github.com/DanielXMoore/Civet/pull/1598)] +* Track indentation of trailing member/call expressions [[#1599](https://github.com/DanielXMoore/Civet/pull/1599)] + * BREAKING CHANGE: A chain of trailing member accesses must now be consistently indented. + ## 0.8.14 (2024-11-07, [diff](https://github.com/DanielXMoore/Civet/compare/v0.8.13...v0.8.14), [commits](https://github.com/DanielXMoore/Civet/commits/v0.8.14)) * Syntax highlighting: fix leading `_` being treated as a number [[#1578](https://github.com/DanielXMoore/Civet/pull/1578)] * Scientific numeric literals take priority over access [[#1579](https://github.com/DanielXMoore/Civet/pull/1579)] diff --git a/package.json b/package.json index 40574706..029eacd7 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@danielx/civet", "type": "commonjs", - "version": "0.8.14", + "version": "0.8.15", "description": "CoffeeScript style syntax for TypeScript", "main": "dist/main.js", "module": "dist/main.mjs",