From fe44b75fbcfbbf7772f85d1ccc28e70eb2f47964 Mon Sep 17 00:00:00 2001 From: Shivasurya Date: Mon, 14 Oct 2024 23:44:41 -0400 Subject: [PATCH 1/3] Bump version to 0.0.29 --- sourcecode-parser/VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sourcecode-parser/VERSION b/sourcecode-parser/VERSION index 329ee9fd..998726ed 100644 --- a/sourcecode-parser/VERSION +++ b/sourcecode-parser/VERSION @@ -1 +1 @@ -0.0.28 \ No newline at end of file +0.0.29 \ No newline at end of file From 5785aa718e6b13cdf5bd7e36d14630f0e2995a66 Mon Sep 17 00:00:00 2001 From: Shivasurya Date: Mon, 14 Oct 2024 23:46:02 -0400 Subject: [PATCH 2/3] bumped package.json version --- package.json | 2 +- sourcecode-parser/build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index e2ac9595..f44812af 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "codepathfinder", - "version": "0.0.28", + "version": "0.0.29", "description": "Code Pathfinder, the open-source alternative to CodeQL. Designed for precise flow analysis and advanced structural search, it identifies vulnerabilities in source code.", "goBinary": { "name": "pathfinder", diff --git a/sourcecode-parser/build.gradle b/sourcecode-parser/build.gradle index 08731221..c3e43dee 100644 --- a/sourcecode-parser/build.gradle +++ b/sourcecode-parser/build.gradle @@ -58,7 +58,7 @@ task bumpVersion { println "Version bumped to ${newVersion}" // Update package.json - def packageJsonFile = file("${rootDir}/package.json") + def packageJsonFile = file("../package.json") if (packageJsonFile.exists()) { def packageJson = new groovy.json.JsonSlurper().parse(packageJsonFile) packageJson.version = newVersion From 55b9603629ad2ca685e6dbf6599ccb77db85d83a Mon Sep 17 00:00:00 2001 From: Shivasurya Date: Mon, 14 Oct 2024 23:46:29 -0400 Subject: [PATCH 3/3] bumped package.json version --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2fd167bd..94d391fe 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ docker run --rm -v "./src:/src" shivasurya/code-pathfinder:stable-latest pathfin ### :whale: Using Docker ```bash -$ docker pull shivasurya/code-pathfinder:dev +$ docker pull shivasurya/code-pathfinder:stable-latest ``` ### From npm