Skip to content

Commit

Permalink
increment cpplint-cpp version, update docs (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
matyalatte authored Oct 19, 2024
1 parent 5cbaab8 commit aacdd98
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
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

0 comments on commit aacdd98

Please sign in to comment.