diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 32fc77b..adca99d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,7 @@ on: pull_request: paths-ignore: "*.rst" push: - paths-ignore: "*.rst" + # paths-ignore: "*.rst" branches: [master, develop] concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a481c65..571eb2f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,17 +2,25 @@ Changelog ********* -2.0.1 (2025-03-09) +2.0.1 (2025-04-02) ================== Yet another overdue... hotfix. Sorry this took so long. -* The false positive for indented function parameters in namespaces was eradicated. (https://github.com/cpplint/cpplint/pull/304) -* 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/308) -* build/include-what-you-use now recognizes c-style headers such as for symbols from . (https://github.com/cpplint/cpplint/pull/319) -* Ruff was ran on the project to improve performance and reader comprehension thanks to @cclauss. - -2.0 (2024-10-06) +* The false positive for indented function parameters in namespaces was eradicated by @norab0130 in https://github.com/cpplint/cpplint/pull/304 +* IWYU: treat stdio.h the same way as cstdio by @aaronliu0130 in https://github.com/cpplint/cpplint/pull/319 +* README.rst: Add instructions for pre-commit by @cclauss in https://github.com/cpplint/cpplint/pull/320 +* PEP 621: Migrate from setup.{py, cfg} to pyproject.toml by @cclauss in https://github.com/cpplint/cpplint/pull/315 +* Prepare for release 2.0.1 and update changelog by @aaronliu0130 in https://github.com/cpplint/cpplint/pull/322 +* Refactor tests and metadata by @aaronliu0130 in https://github.com/cpplint/cpplint/pull/317 +* misc git cleanup by @aaronliu0130 in https://github.com/cpplint/cpplint/pull/340 +* Mypy: static type checker for Python by @cclauss in https://github.com/cpplint/cpplint/pull/345 +* CONTRIBUTING.rst: Default branch is develop, add pre-commit by @cclauss in https://github.com/cpplint/cpplint/pull/349 +* Fix test refactoring by @aaronliu0130 in https://github.com/cpplint/cpplint/pull/350 +* suppress C++-only categories on C file extensions by @aaronliu0130 in https://github.com/cpplint/cpplint/pull/318 +* Add a GitHub Action to publish to PyPI by @cclauss in https://github.com/cpplint/cpplint/pull/347 + +2.0.0 (2024-10-06) ================ A large long-overdue modernization of the codebase!