From ba6b547834b0e786b7533b40a7fea5bd03817ae7 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 8 Apr 2025 02:30:19 +0200 Subject: [PATCH 1/2] chore: Prepare for release v2.1.0 --- CHANGELOG.rst | 2 +- cpplint.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 2555e1c..e2c089b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,7 +2,7 @@ Changelog ********* -2.1.0 (TBA) +2.1.0 (2025-04-08) =========== * Python versions less than 3.9 are no longer supported. diff --git a/cpplint.py b/cpplint.py index 8498ee6..39eef3a 100755 --- a/cpplint.py +++ b/cpplint.py @@ -61,7 +61,7 @@ # if empty, use defaults _valid_extensions: set[str] = set() -__VERSION__ = "2.0.1" +__VERSION__ = "2.1.0" _USAGE = """ Syntax: cpplint.py [--verbose=#] [--output=emacs|eclipse|vs7|junit|sed|gsed] From 82db71d84761e230a30bd4187a4664b4d9d73bc1 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 8 Apr 2025 03:11:04 +0200 Subject: [PATCH 2/2] v2.1.0 --> v2.0.2 Co-authored-by: Aaron Liu --- CHANGELOG.rst | 4 ++-- cpplint.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e2c089b..3bc81cf 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,10 +2,10 @@ Changelog ********* -2.1.0 (2025-04-08) +2.0.2 (2025-04-08) =========== -* Python versions less than 3.9 are no longer supported. +* Python versions less than 3.9 are no longer supported. (https://github.com/cpplint/cpplint/pull/334) * The false positive for indented member initializer lists in namespaces were eradicated. (https://github.com/cpplint/cpplint/pull/353) * The warning on non-const references (runtime/references) is now disabled by default pursuant to the May 2020 Google style guide update. (https://github.com/cpplint/cpplint/pull/305) diff --git a/cpplint.py b/cpplint.py index 39eef3a..7abd2ba 100755 --- a/cpplint.py +++ b/cpplint.py @@ -61,7 +61,7 @@ # if empty, use defaults _valid_extensions: set[str] = set() -__VERSION__ = "2.1.0" +__VERSION__ = "2.0.2" _USAGE = """ Syntax: cpplint.py [--verbose=#] [--output=emacs|eclipse|vs7|junit|sed|gsed]