From 6a82c56d4dbcd560078009256b8820ed50e7ebf3 Mon Sep 17 00:00:00 2001 From: Marijn Haverbeke Date: Fri, 10 Nov 2023 12:38:51 +0100 Subject: [PATCH] Mark version 1.1.1 --- CHANGELOG.md | 12 ++++++++++++ package.json | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b082e8..db47e83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## 1.1.1 (2023-11-10) + +### Bug fixes + +Fix a bug where `resolveStack` could sometimes yield the same node multiple times. + +Allow mixed-parsing trees to be mounted for zero-length nodes. + +Fix a bug in mixed-language parsing that could some parts of an inner language to be missed when incrementally reparsing from a stopped parse. + +In `Tree.build`, when given an extremely deeply nested tree structure, flatten it instead of overflowing the stack. + ## 1.1.0 (2023-09-19) ### New features diff --git a/package.json b/package.json index c7f29e1..e74e657 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@lezer/common", - "version": "1.1.0", + "version": "1.1.1", "description": "Syntax tree data structure and parser interfaces for the lezer parser", "main": "dist/index.cjs", "type": "module",