From 7c814ca156716e7b46ad84ac038bf298ff91cbb4 Mon Sep 17 00:00:00 2001 From: Timo Tijhof Date: Tue, 1 Aug 2023 15:51:57 +0100 Subject: [PATCH] Tag v4.1.1 Change-Id: I4a31c611f55420de766df41f5c151863622c2c08 --- CHANGES.md | 8 ++++++++ composer.json | 1 + 2 files changed, 9 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index aa4932fb..e24cb224 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,13 @@ # Changelog +## 4.1.1 + +* Less_Parser: Faster `MatchQuoted` by using native `strcspn`. (Thiemo Kreuz) +* Less_Parser: Faster `parseEntitiesQuoted` by inlining `MatchQuoted`. (Thiemo Kreuz) +* Less_Parser: Faster `parseUnicodeDescriptor` and `parseEntitiesJavascript` by first-char checks. (Thiemo Kreuz) +* Less_Tree_Mixin_Call: Include mixin name in error message (Jeremy P) +* Fix mismatched casing in class names to fix autoloading on case-sensitive filesystems (Jeremy P) + ## 4.1.0 * Add support for `@supports` blocks. (Anne Tomasevich) [T332923](http://phabricator.wikimedia.org/T332923) diff --git a/composer.json b/composer.json index 5e951050..179afb2b 100644 --- a/composer.json +++ b/composer.json @@ -60,6 +60,7 @@ "minus-x check ." ], "bench": "@php -d opcache.enable=1 -d opcache.enable_cli=1 test/bench.php", + "changelog": "git log --format='* %s (%aN)' --no-merges --reverse $(git describe --tags --abbrev=0 HEAD)...HEAD | sort | grep -vE '^\\* (build|docs?|tests?):'", "cover": "phpunit --coverage-html coverage", "fix": [ "minus-x fix .",