diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 9a2c7e8..f3daa41 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -15,7 +15,7 @@ repos: - id: pylint additional_dependencies: - "pytest==8.3.3" - - "syrupy==4.7.1" + - "syrupy==4.7.2" - "setuptools" - "tree-sitter==0.23.0" - "tree-sitter-zeek==0.1.1" diff --git a/CHANGES b/CHANGES index 9a7e6ec..f39478a 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,7 @@ +1.2.9-38 | 2024-10-08 15:38:27 +0200 + + * build(deps): bump syrupy from 4.7.1 to 4.7.2 (dependabot[bot]) + 1.2.9-36 | 2024-09-16 16:22:23 +0200 * Bump pre-commit hooks (Benjamin Bannier, Corelight) diff --git a/VERSION b/VERSION index bfc6c43..cafc63d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.2.9-36 +1.2.9-38 diff --git a/pyproject.toml b/pyproject.toml index 6c7ea61..2fd3645 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,7 +34,7 @@ dependencies = [ [project.optional-dependencies] dev = [ "pytest==8.3.3", - "syrupy==4.7.1", + "syrupy==4.7.2", ] [[project.maintainers]] diff --git a/zeekscript/__init__.py b/zeekscript/__init__.py index 578c029..1cb16fd 100644 --- a/zeekscript/__init__.py +++ b/zeekscript/__init__.py @@ -1,6 +1,6 @@ """Wrapper around more low-level tests.""" -__version__ = "1.2.9-36" +__version__ = "1.2.9-38" __all__ = ["cli", "error", "formatter", "node", "output", "script"] from .cli import *