Skip to content

Commit 6d05198

Browse files
authored
Merge pull request #119 from wagga40/develop
Bump to 3.3.0
2 parents 5364a40 + 0300096 commit 6d05198

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.coverage

0 Bytes
Binary file not shown.

tests/test_console.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,16 +76,16 @@ class TestBannerAndSection:
7676
def test_print_banner_visible_when_not_quiet(self):
7777
set_quiet_mode(False)
7878
with console.capture() as capture:
79-
print_banner("3.2.0")
79+
print_banner("3.3.0")
8080
out = capture.get()
8181
assert "Standalone Sigma" in out or "Sigma" in out
82-
assert "3.2.0" in out
82+
assert "3.3.0" in out
8383

8484
def test_print_banner_suppressed_when_quiet(self):
8585
set_quiet_mode(True)
8686
try:
8787
with console.capture() as capture:
88-
print_banner("3.2.0")
88+
print_banner("3.3.0")
8989
assert capture.get() == ""
9090
finally:
9191
set_quiet_mode(False)

zircolite.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -856,7 +856,7 @@ def _run_processing(ctx, args, logger, memory_tracker):
856856
# MAIN
857857
################################################################
858858
def main():
859-
version = "3.2.0"
859+
version = "3.3.0"
860860
args = parse_arguments()
861861

862862
# Handle generate-config before logging setup

zircolite/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,4 +217,4 @@
217217
'print_detection',
218218
]
219219

220-
__version__ = "3.2.0"
220+
__version__ = "3.3.0"

0 commit comments

Comments
 (0)