From 60dacf5bc5325ef3912da28eb60097686b274566 Mon Sep 17 00:00:00 2001 From: Marijn Haverbeke Date: Tue, 7 Feb 2023 17:44:02 +0100 Subject: [PATCH] Mark version 6.5.0 --- CHANGELOG.md | 12 ++++++++++++ package.json | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a122976..40d0b65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## 6.5.0 (2023-02-07) + +### Bug fixes + +Make indentation for stream languages more reliable by having `StringStream.indentation` return overridden indentations from the indent context. + +### New features + +The `toggleFold` command folds or unfolds depending on whether there's an existing folded range on the current line. + +`indentUnit` now accepts any (repeated) whitespace character, not just spaces and tabs. + ## 6.4.0 (2023-01-12) ### New features diff --git a/package.json b/package.json index ec8d522..77837c8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@codemirror/language", - "version": "6.4.0", + "version": "6.5.0", "description": "Language support infrastructure for the CodeMirror code editor", "scripts": { "test": "cm-runtests",