Skip to content

Commit 56b7666

Browse files
authored
release: Bump/v0.0.29 (#159)
* Bump version to 0.0.29 * bumped package.json version * bumped package.json version
1 parent 3ff0401 commit 56b7666

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ docker run --rm -v "./src:/src" shivasurya/code-pathfinder:stable-latest pathfin
3030
### :whale: Using Docker
3131

3232
```bash
33-
$ docker pull shivasurya/code-pathfinder:dev
33+
$ docker pull shivasurya/code-pathfinder:stable-latest
3434
```
3535

3636
### From npm

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codepathfinder",
3-
"version": "0.0.28",
3+
"version": "0.0.29",
44
"description": "Code Pathfinder, the open-source alternative to CodeQL. Designed for precise flow analysis and advanced structural search, it identifies vulnerabilities in source code.",
55
"goBinary": {
66
"name": "pathfinder",

sourcecode-parser/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.28
1+
0.0.29

sourcecode-parser/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ task bumpVersion {
5858
println "Version bumped to ${newVersion}"
5959

6060
// Update package.json
61-
def packageJsonFile = file("${rootDir}/package.json")
61+
def packageJsonFile = file("../package.json")
6262
if (packageJsonFile.exists()) {
6363
def packageJson = new groovy.json.JsonSlurper().parse(packageJsonFile)
6464
packageJson.version = newVersion

0 commit comments

Comments
 (0)