Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
pull_request:
paths-ignore: "*.rst"
push:
paths-ignore: "*.rst"
# paths-ignore: "*.rst"

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why lol *.rst changes cannot break code/tests and pre-commit errors are in a separate workflow anyway.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There are three required GitHub Actions tests before a pull request is merged. Without this change, a pull request that only changes .rst files can never be merged. Failing to plan is planing to fail.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good point. Your change does not do anything to stop that, though, as all you changed is the part applying to pushes to the master and develop branches. I'm currently asking https://github.com/orgs/community/discussions/155654 to implement an alternative measure of path-filtering (removing the ignorance from both is also an option but I don't think we need it enough for a separate commit; I won't oppose such a change though).

branches: [master, develop]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Expand Down
22 changes: 15 additions & 7 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <stdio.h> for symbols from <cstdio>. (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!
Expand Down