Skip to content

Commit 729aa92

Browse files
authored
chore(release): bump package versions from v2.0.1 to v2.0.2 (patch) (#484)
## Release Information: `v2.0.2` New release of `lumirlumir/npm-clang-format-node` has arrived! 🎉 This PR bumps the package versions from `v2.0.1` to `v2.0.2` (`patch`). See [Actions](https://github.com/lumirlumir/npm-clang-format-node/actions/runs/18430409997) for more details. | Info | Value | | ----------- | -------------------------- | | Repository | `lumirlumir/npm-clang-format-node` | | SEMVER | `patch` | | Pre ID | `canary` | | Short SHA | eae09d1 | | Old Version | `v2.0.1` | | New Version | `v2.0.2` | <!-- Release notes generated using configuration in .github/release.yml at main --> ## What's Changed ### 🐛 Bug Fixes * fix(deps): bump LLVM from llvmorg-21.1.2 to llvmorg-21.1.3 by @lumirlumir in #482 ### 🧰 Chores * chore(*): remove `cooldown` in dependabot (buggy) by @lumirlumir in #469 * chore(sync-server): update ESLint config by @lumirlumir in #478 * chore(sync-server): add `json`, `jsonc`, and `json5` to `lint-staged` config by @lumirlumir in #480 ### 🔄 Continuous Integrations * ci(*): switch to trusted publishing by @lumirlumir in #483 ### ⬆️ Dependency Updates * chore(deps-dev): bump lint-staged from 16.1.6 to 16.2.3 by @dependabot[bot] in #470 * chore(deps-dev): bump eslint from 9.35.0 to 9.36.0 by @dependabot[bot] in #471 * chore(deps-dev): bump @types/node from 24.5.2 to 24.6.0 by @dependabot[bot] in #472 * chore(deps-dev): bump typescript from 5.9.2 to 5.9.3 by @dependabot[bot] in #474 * chore(deps-dev): bump eslint from 9.36.0 to 9.37.0 by @dependabot[bot] in #477 * chore(deps-dev): bump @types/node from 24.6.0 to 24.6.2 by @dependabot[bot] in #476 * chore(deps-dev): bump @types/node from 24.6.2 to 24.7.0 by @dependabot[bot] in #479 * chore(deps-dev): bump @types/node from 24.7.0 to 24.7.1 by @dependabot[bot] in #481 **Full Changelog**: v2.0.1...v2.0.2
1 parent eae09d1 commit 729aa92

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.1",
4+
"version": "2.0.2",
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.1"
16+
"clang-format-node": "^2.0.2"
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.1",
4+
"version": "2.0.2",
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.1"
11+
"clang-format-git": "^2.0.2"
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.1"
3+
"version": "2.0.2"
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.1",
3+
"version": "2.0.2",
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.1"
61+
"clang-format-node": "^2.0.2"
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.1",
3+
"version": "2.0.2",
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.1"
60+
"clang-format-node": "^2.0.2"
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.1",
3+
"version": "2.0.2",
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.1",
4+
"version": "2.0.2",
55
"type": "commonjs",
66
"scripts": {
77
"test": "node --test"
88
},
99
"dependencies": {
10-
"clang-format-git": "^2.0.1",
11-
"clang-format-git-python": "^2.0.1",
12-
"clang-format-node": "^2.0.1"
10+
"clang-format-git": "^2.0.2",
11+
"clang-format-git-python": "^2.0.2",
12+
"clang-format-node": "^2.0.2"
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.1",
4+
"version": "2.0.2",
55
"type": "module",
66
"scripts": {
77
"test": "node --test"
88
},
99
"dependencies": {
10-
"clang-format-git": "^2.0.1",
11-
"clang-format-git-python": "^2.0.1",
12-
"clang-format-node": "^2.0.1"
10+
"clang-format-git": "^2.0.2",
11+
"clang-format-git-python": "^2.0.2",
12+
"clang-format-node": "^2.0.2"
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.1",
4+
"version": "2.0.2",
55
"scripts": {
66
"test": "node --test"
77
},
88
"dependencies": {
9-
"clang-format-git": "^2.0.1",
10-
"clang-format-git-python": "^2.0.1",
11-
"clang-format-node": "^2.0.1"
9+
"clang-format-git": "^2.0.2",
10+
"clang-format-git-python": "^2.0.2",
11+
"clang-format-node": "^2.0.2"
1212
}
1313
}

0 commit comments

Comments
 (0)