Skip to content

Commit 1092e9c

Browse files
committed
Merge remote-tracking branch 'origin/topic/bbannier/bump-pre-commit-hooks'
2 parents 789eec5 + 710b8ab commit 1092e9c

File tree

6 files changed

+11
-7
lines changed

6 files changed

+11
-7
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repos:
88
exclude: examples/|testing/tests/.*\.sh
99

1010
- repo: https://github.com/maxwinterstein/shfmt-py
11-
rev: v3.7.0.1
11+
rev: v3.11.0.2
1212
hooks:
1313
- id: shfmt
1414
exclude: examples/t6.sh
@@ -23,7 +23,7 @@ repos:
2323
exclude: ^testing/Baseline|examples/.*Baseline.*
2424

2525
- repo: https://github.com/astral-sh/ruff-pre-commit
26-
rev: v0.8.1
26+
rev: v0.11.6
2727
hooks:
2828
- id: ruff
2929
args: [--fix]

CHANGES

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
1.2-9 | 2025-04-22 17:56:49 +0200
2+
3+
* Bump pre-commit hooks (Benjamin Bannier, Corelight)
4+
15
1.2-7 | 2025-03-20 10:09:16 +0100
26

37
* Make btest-bg-run delay configurable (Arne Welzel, Corelight)

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
..
33
.. Version number is filled in automatically.
44

5-
.. |version| replace:: 1.2-7
5+
.. |version| replace:: 1.2-9
66

77
==================================================
88
BTest - A Generic Driver for Powerful System Tests

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2-7
1+
1.2-9

btest

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ else:
5656
import multiprocessing.managers as mp_managers
5757
import multiprocessing.sharedctypes as mp_sharedctypes
5858

59-
VERSION = "1.2-7" # Automatically filled in.
59+
VERSION = "1.2-9" # Automatically filled in.
6060

6161
Name = "btest"
6262
Config = None
@@ -496,7 +496,7 @@ class TestManager(mp_managers.SyncManager):
496496
# zeek processes, but runner processes executing individual test commands.
497497
for i in range(Options.threads):
498498
t = mp.Process(
499-
name=f"#{i+1}", target=lambda: self.threadRun(i, mgr_data)
499+
name=f"#{i + 1}", target=lambda: self.threadRun(i, mgr_data)
500500
)
501501
t.start()
502502
threads += [t]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
py_modules = ["btest-sphinx"]
66

77
setup(
8-
version="1.2.dev7", # Filled in automatically.
8+
version="1.2.dev9", # Filled in automatically.
99
py_modules=py_modules,
1010
)

0 commit comments

Comments
 (0)