You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed blatantly incorrect date
Including items that e.g. describe changes to the changelog just bloats
the changelog. It's supposed to be the point of reference for
consumer-facing changes IIRC. Before 2.0, no changelog talked about
tooling that didn't affect the code or tests either.
Copy file name to clipboardExpand all lines: CHANGELOG.rst
+8-13Lines changed: 8 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -9,23 +9,18 @@ Changelog
9
9
* The false positive for indented member initializer lists in namespaces were eradicated. (https://github.com/cpplint/cpplint/pull/353)
10
10
* The warning on non-const references (runtime/references) is now disabled by default pursuant to the May 2020 Google style guide update. (https://github.com/cpplint/cpplint/pull/305)
11
11
12
-
2.0.1 (2025-03-09)
12
+
2.0.1 (2025-04-02)
13
13
==================
14
14
15
15
Yet another overdue... hotfix. Sorry this took so long.
16
16
17
-
* The false positive for indented function parameters in namespaces was eradicated by @norab0130 in https://github.com/cpplint/cpplint/pull/304
18
-
* IWYU: treat stdio.h the same way as cstdio by @aaronliu0130 in https://github.com/cpplint/cpplint/pull/319
19
-
* README.rst: Add instructions for pre-commit by @cclauss in https://github.com/cpplint/cpplint/pull/320
20
-
* PEP 621: Migrate from setup.{py, cfg} to pyproject.toml by @cclauss in https://github.com/cpplint/cpplint/pull/315
21
-
* Prepare for release 2.0.1 and update changelog by @aaronliu0130 in https://github.com/cpplint/cpplint/pull/322
22
-
* Refactor tests and metadata by @aaronliu0130 in https://github.com/cpplint/cpplint/pull/317
23
-
* misc git cleanup by @aaronliu0130 in https://github.com/cpplint/cpplint/pull/340
24
-
* Mypy: static type checker for Python by @cclauss in https://github.com/cpplint/cpplint/pull/345
25
-
* CONTRIBUTING.rst: Default branch is develop, add pre-commit by @cclauss in https://github.com/cpplint/cpplint/pull/349
26
-
* Fix test refactoring by @aaronliu0130 in https://github.com/cpplint/cpplint/pull/350
27
-
* suppress C++-only categories on C file extensions by @aaronliu0130 in https://github.com/cpplint/cpplint/pull/318
28
-
* Add a GitHub Action to publish to PyPI by @cclauss in https://github.com/cpplint/cpplint/pull/347
17
+
* The false positive for indented function parameters in namespaces was eradicated. (https://github.com/cpplint/cpplint/pull/304)
18
+
* Files that end in ".c", ".C", or ".cu" will now also automatically suppress C++-only categories. Previously, `// NO_LINT_C` was required. (https://github.com/cpplint/cpplint/pull/318)
19
+
* build/include-what-you-use now recognizes c-style headers such as <stdio.h> for symbols from <cstdio>. (https://github.com/cpplint/cpplint/pull/319)
20
+
* Ruff, mypy, and codespell were ran on the project to improve performance and reader comprehension thanks to @cclauss.
21
+
* Tests were refactored away from unittest to improve display with pytest by @cclauss. (https://github.com/cpplint/cpplint/pull/332)
22
+
* @Hs293Go fixed an embarrassing typo; the "latch" and "numbers" headers are now recognized correctly instead of "latchnumbers". (https://github.com/cpplint/cpplint/pull/300)
23
+
* CLI tests were refactored through, among other things, making adding new .def's easier by migrating to a parameterized setup. (https://github.com/cpplint/cpplint/pull/317)
0 commit comments