🔖 bump version 1.0.3 -> 1.0.4

This commit is contained in:
Marc Koch 2022-10-29 23:02:36 +02:00
parent 2f49f1c23f
commit 95e46ec26e
Signed by: marc
GPG Key ID: 12406554CFB028B9
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ Homepage = "https://github.com/MarcMichalsky/civiproxy_logs2json"
cpl2j = "civiproxy_logs2json.__main__:main"
[tool.bumpver]
current_version = "1.0.3"
current_version = "1.0.4"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "🔖 bump version {old_version} -> {new_version}"
commit = true

View File

@ -5,7 +5,7 @@ try:
except ModuleNotFoundError:
import tomli as tomllib
__version__ = "1.0.3"
__version__ = "1.0.4"
_cfg = tomllib.loads(resources.read_text("civiproxy_logs2json", "config.toml"))
REQUEST_LINE_RE = _cfg["regex"]["request_line"]