diff --git a/pyproject.toml b/pyproject.toml index 93a4831..a4fabbe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "civiproxy_logs2json" -version = "1.0.6" +version = "1.0.7" description = "Translate a CiviProxy logfile into JSON format." readme = "README.md" authors = [{ name = "Marc Michalsky", email = "michalsky@forumZFD.de" }] @@ -28,7 +28,7 @@ Homepage = "https://github.com/MarcMichalsky/civiproxy_logs2json" cpl2j = "civiproxy_logs2json.__main__:main" [tool.bumpver] -current_version = "1.0.6" +current_version = "1.0.7" version_pattern = "MAJOR.MINOR.PATCH" commit_message = "🔖 bump version {old_version} -> {new_version}" commit = true diff --git a/src/civiproxy_logs2json/__init__.py b/src/civiproxy_logs2json/__init__.py index 7ea46d2..704d902 100644 --- a/src/civiproxy_logs2json/__init__.py +++ b/src/civiproxy_logs2json/__init__.py @@ -4,7 +4,7 @@ try: except ModuleNotFoundError: import tomli as tomllib -__version__ = "1.0.6" +__version__ = "1.0.7" _cfg = tomllib.loads(resources.read_text("civiproxy_logs2json", "config.toml")) REQUEST_LINE_RE = _cfg["regex"]["request_line"]