From 95e46ec26e0e475d816140ec53af2c81e3b26e57 Mon Sep 17 00:00:00 2001 From: Marc Michalsky Date: Sat, 29 Oct 2022 23:02:36 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20bump=20version=201.0.3=20->=201.?= =?UTF-8?q?0.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 2 +- src/civiproxy_logs2json/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 0e38919..2462f50 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 diff --git a/src/civiproxy_logs2json/__init__.py b/src/civiproxy_logs2json/__init__.py index 53371ed..3b20393 100644 --- a/src/civiproxy_logs2json/__init__.py +++ b/src/civiproxy_logs2json/__init__.py @@ -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"]