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
26 changes: 0 additions & 26 deletions package-lock.json

This file was deleted.

41 changes: 0 additions & 41 deletions package.json

This file was deleted.

2 changes: 1 addition & 1 deletion python-dsl/codepathfinder/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
... )
"""

__version__ = "1.1.5"
__version__ = "1.1.6"

from .matchers import calls, variable
from .decorators import rule
Expand Down
4 changes: 2 additions & 2 deletions python-dsl/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ build-backend = "setuptools.build_meta"

[project]
name = "codepathfinder"
version = "1.1.5"
description = "Python DSL for code-pathfinder security patterns"
version = "1.1.6"
description = "Python SDK for code-pathfinder static analysis for modern security teams"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "AGPL-3.0"}
Expand Down
2 changes: 1 addition & 1 deletion python-dsl/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
setup(
name="codepathfinder",
version=version.get("__version__", "1.0.0"),
description="Python DSL for code-pathfinder security pattern definitions",
description="Python SDK for code-pathfinder static analysis for modern security teams",
long_description=readme,
long_description_content_type="text/markdown",
author="code-pathfinder contributors",
Expand Down
2 changes: 1 addition & 1 deletion sast-engine/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.5
1.1.6
11 changes: 0 additions & 11 deletions sast-engine/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,6 @@ task bumpVersion {
def newVersion = "${major}.${minor}.${patch}"
versionFile.text = newVersion
println "Version bumped to ${newVersion}"

// Update package.json
def packageJsonFile = file("../package.json")
if (packageJsonFile.exists()) {
def packageJson = new groovy.json.JsonSlurper().parse(packageJsonFile)
packageJson.version = newVersion
packageJsonFile.text = groovy.json.JsonOutput.prettyPrint(groovy.json.JsonOutput.toJson(packageJson))
println "Updated package.json version to ${newVersion}"
} else {
println "package.json not found in root directory"
}
}
}

Expand Down
Loading