Skip to content

Commit 0e4cfab

Browse files
authored
chore(release): bump package versions from v2.0.0 to v2.0.1 (patch) (#468)
## Release Information: `v2.0.1` New release of `lumirlumir/npm-clang-format-node` has arrived! 🎉 This PR bumps the package versions from `v2.0.0` to `v2.0.1` (`patch`). See [Actions](https://github.com/lumirlumir/npm-clang-format-node/actions/runs/18087557012) for more details. | Info | Value | | ----------- | -------------------------- | | Repository | `lumirlumir/npm-clang-format-node` | | SEMVER | `patch` | | Pre ID | `canary` | | Short SHA | 66cee04 | | Old Version | `v2.0.0` | | New Version | `v2.0.1` | <!-- Release notes generated using configuration in .github/release.yml at main --> ## What's Changed ### 🧰 Chores * chore(sync-server): add `cooldown` option to `dependabot.yml` by @lumirlumir in #465 * chore(sync-server): update `.vscode/settings.json` by @lumirlumir in #466 ### ⬆️ Dependency Updates * chore(deps-dev): bump @types/node from 24.4.0 to 24.5.0 by @dependabot[bot] in #462 * chore(deps-dev): bump @types/node from 24.5.0 to 24.5.2 by @dependabot[bot] in #464 * chore(deps): bump LLVM from llvmorg-21.1.1 to llvmorg-21.1.2 by @lumirlumir in #467 **Full Changelog**: v2.0.0...v2.0.1
1 parent 66cee04 commit 0e4cfab

File tree

11 files changed

+45
-45
lines changed

11 files changed

+45
-45
lines changed

examples/clang-format/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "examples-clang-format",
4-
"version": "2.0.0",
4+
"version": "2.0.1",
55
"scripts": {
66
"formatted:c": "npx clang-format src/formatted.c",
77
"formatted:c:dry-run": "npx clang-format -Werror -n src/formatted.c",
@@ -13,6 +13,6 @@
1313
"unformatted:cpp:dry-run": "npx clang-format -Werror -n src/unformatted.cpp"
1414
},
1515
"dependencies": {
16-
"clang-format-node": "^2.0.0"
16+
"clang-format-node": "^2.0.1"
1717
}
1818
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"private": true,
33
"name": "examples-git-clang-format",
4-
"version": "2.0.0",
4+
"version": "2.0.1",
55
"scripts": {
66
"add-a-space-to-line-9-of-main-c-file": "node -e \"require('fs').copyFileSync('src/main_overwrite.txt','src/main.c')\"",
77
"git-add": "git add src/main.c && git status",
88
"git-clang-format": "npx git-clang-format"
99
},
1010
"dependencies": {
11-
"clang-format-git": "^2.0.0"
11+
"clang-format-git": "^2.0.1"
1212
}
1313
}

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
3-
"version": "2.0.0"
3+
"version": "2.0.1"
44
}

package-lock.json

Lines changed: 22 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/clang-format-git-python/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "clang-format-git-python",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "Node wrapper for git-clang-format Python script. This package requires Python3 as a dependency.🐉",
55
"main": "build/index.js",
66
"files": [
@@ -58,6 +58,6 @@
5858
"start": "node build/cli.js"
5959
},
6060
"dependencies": {
61-
"clang-format-node": "^2.0.0"
61+
"clang-format-node": "^2.0.1"
6262
}
6363
}

packages/clang-format-git/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "clang-format-git",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "Node wrapper for git-clang-format Python script as a standalone native binary to allow execution without a Python dependency.🐉",
55
"main": "build/index.js",
66
"files": [
@@ -57,6 +57,6 @@
5757
"start": "node build/cli.js"
5858
},
5959
"dependencies": {
60-
"clang-format-node": "^2.0.0"
60+
"clang-format-node": "^2.0.1"
6161
}
6262
}

packages/clang-format-node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "clang-format-node",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "Node wrapper for clang-format native binary inspired by angular/clang-format.🐉",
55
"main": "build/index.js",
66
"files": [
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"private": true,
33
"name": "tests-integration-api-cjs",
4-
"version": "2.0.0",
4+
"version": "2.0.1",
55
"type": "commonjs",
66
"scripts": {
77
"test": "node --test"
88
},
99
"dependencies": {
10-
"clang-format-git": "^2.0.0",
11-
"clang-format-git-python": "^2.0.0",
12-
"clang-format-node": "^2.0.0"
10+
"clang-format-git": "^2.0.1",
11+
"clang-format-git-python": "^2.0.1",
12+
"clang-format-node": "^2.0.1"
1313
}
1414
}
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"private": true,
33
"name": "tests-integration-api-esm",
4-
"version": "2.0.0",
4+
"version": "2.0.1",
55
"type": "module",
66
"scripts": {
77
"test": "node --test"
88
},
99
"dependencies": {
10-
"clang-format-git": "^2.0.0",
11-
"clang-format-git-python": "^2.0.0",
12-
"clang-format-node": "^2.0.0"
10+
"clang-format-git": "^2.0.1",
11+
"clang-format-git-python": "^2.0.1",
12+
"clang-format-node": "^2.0.1"
1313
}
1414
}
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"private": true,
33
"name": "tests-integration-binaries-permission",
4-
"version": "2.0.0",
4+
"version": "2.0.1",
55
"scripts": {
66
"test": "node --test"
77
},
88
"dependencies": {
9-
"clang-format-git": "^2.0.0",
10-
"clang-format-git-python": "^2.0.0",
11-
"clang-format-node": "^2.0.0"
9+
"clang-format-git": "^2.0.1",
10+
"clang-format-git-python": "^2.0.1",
11+
"clang-format-node": "^2.0.1"
1212
}
1313
}

0 commit comments

Comments
 (0)