Skip to content

Commit 6b8c4fd

Browse files
committed
Update version to 3.6.3 and reflect changes in documentation and tests
1 parent 3997bc0 commit 6b8c4fd

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ assignees: ''
1010

1111
- **OS**: (e.g. Windows 11, macOS 14, Ubuntu 22.04)
1212
- **Python version**: (e.g. 3.10, 3.12)
13-
- **Zircolite version**: (e.g. 3.6.1 — run `python zircolite.py --version` if available)
13+
- **Zircolite version**: (e.g. 3.6.3 — run `python zircolite.py --version` if available)
1414

1515
## Steps to reproduce
1616

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Zircolite Documentation
22

3-
Documentation for **Zircolite 3.6.1**. Zircolite is a standalone SIGMA-based detection tool for EVTX, Auditd, Sysmon for Linux, XML, CSV, and JSONL/NDJSON logs. It uses SQLite as a backend for SIGMA rule execution.
3+
Documentation for **Zircolite 3.6.3**. Zircolite is a standalone SIGMA-based detection tool for EVTX, Auditd, Sysmon for Linux, XML, CSV, and JSONL/NDJSON logs. It uses SQLite as a backend for SIGMA rule execution.
44

55
**Zircolite** supports the following log sources:
66

tests/test_console.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,16 +84,16 @@ class TestBannerAndSection:
8484
def test_print_banner_visible_when_not_quiet(self):
8585
set_quiet_mode(False)
8686
with console.capture() as capture:
87-
print_banner("3.6.1")
87+
print_banner("3.6.3")
8888
out = capture.get()
8989
assert "Standalone Sigma" in out or "Sigma" in out
90-
assert "3.6.1" in out
90+
assert "3.6.3" in out
9191

9292
def test_print_banner_suppressed_when_quiet(self):
9393
set_quiet_mode(True)
9494
try:
9595
with console.capture() as capture:
96-
print_banner("3.6.1")
96+
print_banner("3.6.3")
9797
assert capture.get() == ""
9898
finally:
9999
set_quiet_mode(False)

zircolite.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1012,7 +1012,7 @@ def _run_processing(
10121012
# MAIN
10131013
################################################################
10141014
def main() -> None:
1015-
version = "3.6.1"
1015+
version = "3.6.3"
10161016
args = parse_arguments()
10171017

10181018
# Handle generate-config before logging setup

zircolite/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,4 +219,4 @@
219219
'print_detection',
220220
]
221221

222-
__version__ = "3.6.1"
222+
__version__ = "3.6.3"

0 commit comments

Comments
 (0)