🔖 bump version 1.0.5 -> 1.0.6

This commit is contained in:
Marc Koch 2022-10-30 00:37:02 +02:00
parent c8f685c660
commit ee921626ff
Signed by: marc
GPG Key ID: 12406554CFB028B9
2 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "civiproxy_logs2json" name = "civiproxy_logs2json"
version = "1.0.5" version = "1.0.6"
description = "Translate a CiviProxy logfile into JSON format." description = "Translate a CiviProxy logfile into JSON format."
readme = "README.md" readme = "README.md"
authors = [{ name = "Marc Michalsky", email = "michalsky@forumZFD.de" }] authors = [{ name = "Marc Michalsky", email = "michalsky@forumZFD.de" }]
@ -28,7 +28,7 @@ Homepage = "https://github.com/MarcMichalsky/civiproxy_logs2json"
cpl2j = "civiproxy_logs2json.__main__:main" cpl2j = "civiproxy_logs2json.__main__:main"
[tool.bumpver] [tool.bumpver]
current_version = "1.0.5" current_version = "1.0.6"
version_pattern = "MAJOR.MINOR.PATCH" version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "🔖 bump version {old_version} -> {new_version}" commit_message = "🔖 bump version {old_version} -> {new_version}"
commit = true commit = true

View File

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