Skip to content

Commit 143c775

Browse files
committed
Bump version to v2.0.0-rc11
1 parent ec4e6d4 commit 143c775

File tree

5 files changed

+25
-8
lines changed

5 files changed

+25
-8
lines changed

.github/workflows/bump_version.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,12 @@ def main():
116116
"--no-git-tag-version",
117117
],
118118
cwd="bindings/node",
119+
shell=True,
119120
check=True,
120121
)
121-
subprocess.run(["napi", "version"], cwd="bindings/node", check=True)
122+
# subprocess.run(
123+
# ["napi", "version"], cwd="bindings/node", check=True, shell=True
124+
# )
122125
print("Updated version in bindings/node/**package.json")
123126

124127
subprocess.run(

CHANGELOG.md

+16-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77
<!-- markdownlint-disable MD024 -->
88

9+
## [2.0.0-rc11] - 2024-12-11
10+
11+
### <!-- 4 --> 🛠️ Fixed
12+
13+
- Fix changelog on auto-version bump in [`ec4e6d4`](https://github.com/cpp-linter/cpp-linter-rs/commit/ec4e6d4c9a36b84c86fafac071b23bfbe9180716)
14+
15+
[2.0.0-rc11]: https://github.com/cpp-linter/cpp-linter-rs/compare/v2.0.0-rc10...v2.0.0-rc11
16+
17+
Full commit diff: [`v2.0.0-rc10...v2.0.0-rc11`][2.0.0-rc11]
18+
919
## [2.0.0-rc10] - 2024-12-11
1020

1121
### <!-- 1 --> 🚀 Added
@@ -16,9 +26,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1626

1727
- Bump pyo3 from 0.23.2 to 0.23.3 by @dependabot[bot] in [#79](https://github.com/cpp-linter/cpp-linter-rs/pull/79)
1828

19-
[2.0.0-rc10]: https://github.com/cpp-linter/cpp-linter-rs/compare/v2.0.0-rc9...2.0.0-rc10
29+
### <!-- 9 --> 🗨️ Changed
30+
31+
- Bump version to v2.0.0-rc10 by @2bndy5 in [`3915e2b`](https://github.com/cpp-linter/cpp-linter-rs/commit/3915e2b5a09fd9b69a0233da6b8f64a2e34ce553)
32+
33+
[2.0.0-rc10]: https://github.com/cpp-linter/cpp-linter-rs/compare/v2.0.0-rc9...v2.0.0-rc10
2034

21-
Full commit diff: [`v2.0.0-rc9...2.0.0-rc10`][2.0.0-rc10]
35+
Full commit diff: [`v2.0.0-rc9...v2.0.0-rc10`][2.0.0-rc10]
2236

2337
## [2.0.0-rc9] - 2024-11-27
2438

Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ members = ["cpp-linter", "bindings/python", "bindings/node", "docs"]
55
resolver = "2"
66

77
[workspace.package]
8-
version = "2.0.0-rc10" # auto
8+
version = "2.0.0-rc11" # auto
99
authors = [
1010
"Brendan Doherty",
1111
"Peter Shen",

bindings/node/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cpp-linter/cpp-linter",
3-
"version": "2.0.0-rc10",
3+
"version": "2.0.0-rc11",
44
"main": "index.js",
55
"types": "index.d.ts",
66
"napi": {

0 commit comments

Comments
 (0)