From 9ccbc14c575ddceec5827f18c9c0cf69d8296927 Mon Sep 17 00:00:00 2001 From: 2bndy5 <14963867+2bndy5@users.noreply.github.com> Date: Wed, 27 Nov 2024 09:06:49 +0000 Subject: [PATCH] Bump version to v2.0.0-rc9 --- CHANGELOG.md | 22 +++++++++++++++++-- Cargo.lock | 6 ++--- Cargo.toml | 2 +- bindings/node/npm/darwin-x64/package.json | 2 +- bindings/node/npm/linux-x64-gnu/package.json | 2 +- bindings/node/npm/win32-x64-msvc/package.json | 2 +- bindings/node/package.json | 2 +- 7 files changed, 28 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 76ae244..82afe46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.0.0-rc9] - 2024-11-27 + +### 🛠️ Fixed + +- Clang-tidy diagnostic comments in PR review by @2bndy5 in [#77](https://github.com/cpp-linter/cpp-linter-rs/pull/77) + +### 📦 Dependency updates + +- Bump pyo3 from 0.23.1 to 0.23.2 in the cargo group by @dependabot[bot] in [#76](https://github.com/cpp-linter/cpp-linter-rs/pull/76) + +[2.0.0-rc9]: https://github.com/cpp-linter/cpp-linter-rs/compare/v2.0.0-rc8...2.0.0-rc9 + +Full commit diff: [`v2.0.0-rc8...2.0.0-rc9`][2.0.0-rc9] + ## [2.0.0-rc8] - 2024-11-24 ### 🛠️ Fixed @@ -17,9 +31,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Minor update node binding README by @2bndy5 in [`fc2244f`](https://github.com/cpp-linter/cpp-linter-rs/commit/fc2244f81903c719a5268f18e595f422d1a958e1) -[2.0.0-rc8]: https://github.com/cpp-linter/cpp-linter-rs/compare/v2.0.0-rc7...2.0.0-rc8 +### 🗨️ Changed + +- Bump version to v2.0.0-rc8 by @2bndy5 in [`205bd2d`](https://github.com/cpp-linter/cpp-linter-rs/commit/205bd2d492ee45e199ca23d1ac9f118c03a2c4a2) + +[2.0.0-rc8]: https://github.com/cpp-linter/cpp-linter-rs/compare/v2.0.0-rc7...v2.0.0-rc8 -Full commit diff: [`v2.0.0-rc7...2.0.0-rc8`][2.0.0-rc8] +Full commit diff: [`v2.0.0-rc7...v2.0.0-rc8`][2.0.0-rc8] ## [2.0.0-rc7] - 2024-11-24 diff --git a/Cargo.lock b/Cargo.lock index d2b1bc5..437b9e8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -272,7 +272,7 @@ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" [[package]] name = "cpp-linter" -version = "2.0.0-rc8" +version = "2.0.0-rc9" dependencies = [ "anyhow", "chrono", @@ -301,7 +301,7 @@ dependencies = [ [[package]] name = "cpp-linter-js" -version = "2.0.0-rc8" +version = "2.0.0-rc9" dependencies = [ "anyhow", "cpp-linter", @@ -312,7 +312,7 @@ dependencies = [ [[package]] name = "cpp-linter-py" -version = "2.0.0-rc8" +version = "2.0.0-rc9" dependencies = [ "cpp-linter", "pyo3", diff --git a/Cargo.toml b/Cargo.toml index 56f1a72..e81ffdc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ members = ["cpp-linter", "bindings/python", "bindings/node", "docs"] resolver = "2" [workspace.package] -version = "2.0.0-rc8" # auto +version = "2.0.0-rc9" # auto authors = [ "Brendan Doherty", "Peter Shen", diff --git a/bindings/node/npm/darwin-x64/package.json b/bindings/node/npm/darwin-x64/package.json index 54b1cee..f16e8d6 100644 --- a/bindings/node/npm/darwin-x64/package.json +++ b/bindings/node/npm/darwin-x64/package.json @@ -1,6 +1,6 @@ { "name": "@cpp-linter/cpp-linter-darwin-x64", - "version": "2.0.0-rc8", + "version": "2.0.0-rc9", "os": [ "darwin" ], diff --git a/bindings/node/npm/linux-x64-gnu/package.json b/bindings/node/npm/linux-x64-gnu/package.json index 201f1c8..8b8860e 100644 --- a/bindings/node/npm/linux-x64-gnu/package.json +++ b/bindings/node/npm/linux-x64-gnu/package.json @@ -1,6 +1,6 @@ { "name": "@cpp-linter/cpp-linter-linux-x64-gnu", - "version": "2.0.0-rc8", + "version": "2.0.0-rc9", "os": [ "linux" ], diff --git a/bindings/node/npm/win32-x64-msvc/package.json b/bindings/node/npm/win32-x64-msvc/package.json index 9fb1b64..3d0c4c5 100644 --- a/bindings/node/npm/win32-x64-msvc/package.json +++ b/bindings/node/npm/win32-x64-msvc/package.json @@ -1,6 +1,6 @@ { "name": "@cpp-linter/cpp-linter-win32-x64-msvc", - "version": "2.0.0-rc8", + "version": "2.0.0-rc9", "os": [ "win32" ], diff --git a/bindings/node/package.json b/bindings/node/package.json index 4ae0e93..93f71c2 100644 --- a/bindings/node/package.json +++ b/bindings/node/package.json @@ -1,6 +1,6 @@ { "name": "@cpp-linter/cpp-linter", - "version": "2.0.0-rc8", + "version": "2.0.0-rc9", "main": "index.js", "types": "index.d.ts", "napi": {