diff --git a/examples/clang-format/package.json b/examples/clang-format/package.json index 4c8f023..6e38099 100644 --- a/examples/clang-format/package.json +++ b/examples/clang-format/package.json @@ -12,6 +12,6 @@ "unformatted:cpp:dry-run": "npx clang-format -Werror -n src/unformatted.cpp" }, "dependencies": { - "clang-format-node": "^2.0.4" + "clang-format-node": "^2.0.5" } } diff --git a/examples/git-clang-format/package.json b/examples/git-clang-format/package.json index 3872ac9..e8031c5 100644 --- a/examples/git-clang-format/package.json +++ b/examples/git-clang-format/package.json @@ -7,6 +7,6 @@ "git-clang-format": "npx git-clang-format" }, "dependencies": { - "clang-format-git": "^2.0.4" + "clang-format-git": "^2.0.5" } } diff --git a/package-lock.json b/package-lock.json index dce2d48..348b88e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "npm-clang-format-node", - "version": "2.0.4", + "version": "2.0.5", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "npm-clang-format-node", - "version": "2.0.4", + "version": "2.0.5", "workspaces": [ "examples/*", "packages/*", @@ -38,13 +38,13 @@ "examples/clang-format": { "name": "examples-clang-format", "dependencies": { - "clang-format-node": "^2.0.4" + "clang-format-node": "^2.0.5" } }, "examples/git-clang-format": { "name": "examples-git-clang-format", "dependencies": { - "clang-format-git": "^2.0.4" + "clang-format-git": "^2.0.5" } }, "node_modules/@actions/core": { @@ -12222,11 +12222,11 @@ } }, "packages/clang-format-git": { - "version": "2.0.4", + "version": "2.0.5", "hasInstallScript": true, "license": "MIT", "dependencies": { - "clang-format-node": "^2.0.4" + "clang-format-node": "^2.0.5" }, "bin": { "clang-format-git": "build/cli.js", @@ -12237,11 +12237,11 @@ } }, "packages/clang-format-git-python": { - "version": "2.0.4", + "version": "2.0.5", "hasInstallScript": true, "license": "MIT", "dependencies": { - "clang-format-node": "^2.0.4" + "clang-format-node": "^2.0.5" }, "bin": { "clang-format-git-python": "build/cli.js", @@ -12252,7 +12252,7 @@ } }, "packages/clang-format-node": { - "version": "2.0.4", + "version": "2.0.5", "hasInstallScript": true, "license": "MIT", "bin": { @@ -12266,25 +12266,25 @@ "tests/integration-api-cjs": { "name": "tests-integration-api-cjs", "dependencies": { - "clang-format-git": "^2.0.4", - "clang-format-git-python": "^2.0.4", - "clang-format-node": "^2.0.4" + "clang-format-git": "^2.0.5", + "clang-format-git-python": "^2.0.5", + "clang-format-node": "^2.0.5" } }, "tests/integration-api-esm": { "name": "tests-integration-api-esm", "dependencies": { - "clang-format-git": "^2.0.4", - "clang-format-git-python": "^2.0.4", - "clang-format-node": "^2.0.4" + "clang-format-git": "^2.0.5", + "clang-format-git-python": "^2.0.5", + "clang-format-node": "^2.0.5" } }, "tests/integration-binaries-permission": { "name": "tests-integration-binaries-permission", "dependencies": { - "clang-format-git": "^2.0.4", - "clang-format-git-python": "^2.0.4", - "clang-format-node": "^2.0.4" + "clang-format-git": "^2.0.5", + "clang-format-git-python": "^2.0.5", + "clang-format-node": "^2.0.5" } }, "website": { diff --git a/package.json b/package.json index c1fdb5c..198cdd6 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "npm-clang-format-node", - "version": "2.0.4", + "version": "2.0.5", "packageManager": "npm@10.9.2", "engines": { "node": ">=20.19.4" diff --git a/packages/clang-format-git-python/package.json b/packages/clang-format-git-python/package.json index 950aaaa..8a2403f 100644 --- a/packages/clang-format-git-python/package.json +++ b/packages/clang-format-git-python/package.json @@ -1,6 +1,6 @@ { "name": "clang-format-git-python", - "version": "2.0.4", + "version": "2.0.5", "description": "Node wrapper for git-clang-format Python script. This package requires Python3 as a dependency.🐉", "main": "build/index.js", "files": [ @@ -58,6 +58,6 @@ "start": "node build/cli.js" }, "dependencies": { - "clang-format-node": "^2.0.4" + "clang-format-node": "^2.0.5" } } diff --git a/packages/clang-format-git/package.json b/packages/clang-format-git/package.json index 62831c5..d47b87b 100644 --- a/packages/clang-format-git/package.json +++ b/packages/clang-format-git/package.json @@ -1,6 +1,6 @@ { "name": "clang-format-git", - "version": "2.0.4", + "version": "2.0.5", "description": "Node wrapper for git-clang-format Python script as a standalone native binary to allow execution without a Python dependency.🐉", "main": "build/index.js", "files": [ @@ -57,6 +57,6 @@ "start": "node build/cli.js" }, "dependencies": { - "clang-format-node": "^2.0.4" + "clang-format-node": "^2.0.5" } } diff --git a/packages/clang-format-node/package.json b/packages/clang-format-node/package.json index 67c14dd..8abc143 100644 --- a/packages/clang-format-node/package.json +++ b/packages/clang-format-node/package.json @@ -1,6 +1,6 @@ { "name": "clang-format-node", - "version": "2.0.4", + "version": "2.0.5", "description": "Node wrapper for clang-format native binary inspired by angular/clang-format.🐉", "main": "build/index.js", "files": [ diff --git a/tests/integration-api-cjs/package.json b/tests/integration-api-cjs/package.json index 1a18e73..b86ca02 100644 --- a/tests/integration-api-cjs/package.json +++ b/tests/integration-api-cjs/package.json @@ -6,8 +6,8 @@ "test": "node --test" }, "dependencies": { - "clang-format-git": "^2.0.4", - "clang-format-git-python": "^2.0.4", - "clang-format-node": "^2.0.4" + "clang-format-git": "^2.0.5", + "clang-format-git-python": "^2.0.5", + "clang-format-node": "^2.0.5" } } diff --git a/tests/integration-api-esm/package.json b/tests/integration-api-esm/package.json index bc8be14..adafb31 100644 --- a/tests/integration-api-esm/package.json +++ b/tests/integration-api-esm/package.json @@ -6,8 +6,8 @@ "test": "node --test" }, "dependencies": { - "clang-format-git": "^2.0.4", - "clang-format-git-python": "^2.0.4", - "clang-format-node": "^2.0.4" + "clang-format-git": "^2.0.5", + "clang-format-git-python": "^2.0.5", + "clang-format-node": "^2.0.5" } } diff --git a/tests/integration-binaries-permission/package.json b/tests/integration-binaries-permission/package.json index 4b892bd..447252e 100644 --- a/tests/integration-binaries-permission/package.json +++ b/tests/integration-binaries-permission/package.json @@ -5,8 +5,8 @@ "test": "node --test" }, "dependencies": { - "clang-format-git": "^2.0.4", - "clang-format-git-python": "^2.0.4", - "clang-format-node": "^2.0.4" + "clang-format-git": "^2.0.5", + "clang-format-git-python": "^2.0.5", + "clang-format-node": "^2.0.5" } }