From 6f842705b90c5842548946d2cbed9ff6b87d79b2 Mon Sep 17 00:00:00 2001 From: "Matthew \"strager\" Glazar" Date: Wed, 1 Nov 2023 23:48:03 -0400 Subject: [PATCH] feat(docs): update change log and authors list --- docs/AUTHORS.md | 1 + docs/CHANGELOG.md | 11 +++++++++++ 2 files changed, 12 insertions(+) diff --git a/docs/AUTHORS.md b/docs/AUTHORS.md index 2972c7948c..b1b351b945 100644 --- a/docs/AUTHORS.md +++ b/docs/AUTHORS.md @@ -89,4 +89,5 @@ authored portions of quick-lint-js: * ooblegork; codyxvalley@mail.fresnostate.edu; signed CLA-v1.md * oren; countoren@gmail.com; signed CLA-v1.md * pedrobl85; pedrobl1718@gmail.com; signed CLA-v1.md +* toastino; toastino@disroot.org; signed CLA-v1.md * wagner riffel; w@104d.net; signed CLA-v1.md diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 3d5cdb16d7..c30198b67b 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -8,8 +8,17 @@ Semantic Versioning. ## Unreleased +### Added + +* Mixing `&` and `<<` such as in `a & 0x1 << 3` now reports [E0716][] + ("unintuitive operator precedence when using & and << or >>"). (Implemented by + [toastin0][].) + ### Fixed +* A missing operating in an `if` condition (such as in `if (x y)`) no longer + causes [E0065][] ("'else' has no corresponding 'if'") to be reported. + (Implemented by [arieldon][].) * `cmake --install` with `--component build-tools` now installs the build tools. (This is a regression introduced in quick-lint-js version 2.16.0.) @@ -1143,6 +1152,7 @@ Beta release. [ooblegork]: https://github.com/ooblegork [pedrobl1718]: https://github.com/pedrobl85 [tiagovla]: https://github.com/tiagovla +[toastin0]: https://github.com/toastin0 [wagner riffel]: https://github.com/wgrr [E0001]: https://quick-lint-js.com/errors/E0001/ @@ -1271,3 +1281,4 @@ Beta release. [E0713]: https://quick-lint-js.com/errors/E0713/ [E0714]: https://quick-lint-js.com/errors/E0714/ [E0715]: https://quick-lint-js.com/errors/E0715/ +[E0716]: https://quick-lint-js.com/errors/E0716/