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
7 changes: 4 additions & 3 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
# Changelog

## 0.3.0 (Unreleased)
## 0.3.0 (2024-10-19)

- cpplint-cpp now conforms to [cpplint 2.0](https://github.com/cpplint/cpplint/tree/2.0.0).
- Disabled readability/fn_size by default. (https://github.com/matyalatte/cpplint-cpp/pull/14)
- Disabled `readability/fn_size` by default. (https://github.com/matyalatte/cpplint-cpp/pull/14)
- Cast checks now uses standard fixed-width typenames. (https://github.com/matyalatte/cpplint-cpp/pull/15)
- Fixed false positives on concept declaration. (https://github.com/matyalatte/cpplint-cpp/pull/16)
- Fixed a bug where `latch` and `numbers` were not considered as c++ headers, courtesy of @GermanAizek. (https://github.com/matyalatte/cpplint-cpp/pull/6)
- `--exclude` now supports glob patterns. (https://github.com/matyalatte/cpplint-cpp/pull/9)
- Fixed a compile error on Ubuntu20.04 with an old version of GCC. (https://github.com/matyalatte/cpplint-cpp/pull/12)
- Added support for unix convention of using `-` for stdin. (https://github.com/matyalatte/cpplint-cpp/pull/13)
- Fixed a compile error on Clang, courtesy of @GermanAizek. (https://github.com/matyalatte/cpplint-cpp/pull/5)
- Fixed a compile error on Ubuntu20.04 with an old version of GCC. (https://github.com/matyalatte/cpplint-cpp/pull/12)

## 0.2.1 (2024-08-25)

Expand Down
2 changes: 0 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,8 @@ Basically, `cpplint-cpp` uses the same algorithm as `cpplint.py`, but some chang

cpplint-cpp is a WIP project. Please note that the following features are not implemented yet.

- Glob patterns for `--exclude` option.
- JUnit style outputs.
- Multibyte characters in stdin on Windows.
- UNIX convention of using "-" for stdin.

## Building

Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ project('cpplint-cpp', ['c', 'cpp'],
'cpp_winlibs=', # likewise as with c_winlibs
'wrap_mode=forcefallback' # we don't use installed libraries.
],
version: '0.2.1')
version: '0.3.0')

cpplint_link_args = []
cpplint_c_args = []
Expand Down