diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 54e9452..0a3a8ae 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -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) diff --git a/docs/README.md b/docs/README.md index 0a0ca8f..2d6a771 100644 --- a/docs/README.md +++ b/docs/README.md @@ -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 diff --git a/meson.build b/meson.build index a2a427f..01bf275 100644 --- a/meson.build +++ b/meson.build @@ -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 = []