Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion sourcecode-parser/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.28
0.0.29
2 changes: 1 addition & 1 deletion sourcecode-parser/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading