diff --git a/pyproject.toml b/pyproject.toml index 13785e5..0813fed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ build-backend = "poetry.core.masonry.api" requires = ["poetry-core"] [tool.commitizen] -version = "1.2.4" +version = "1.2.5" version_files = ["pyproject.toml:^version", "tail_jsonl/__init__.py:^__version"] [tool.poetry] @@ -26,7 +26,7 @@ maintainers = [] name = "tail_jsonl" readme = "docs/README.md" repository = "https://github.com/kyleking/tail-jsonl" -version = "1.2.4" +version = "1.2.5" [tool.poetry.dependencies] python = "^3.8.12" diff --git a/tail_jsonl/__init__.py b/tail_jsonl/__init__.py index 49211a7..09733e1 100644 --- a/tail_jsonl/__init__.py +++ b/tail_jsonl/__init__.py @@ -2,7 +2,7 @@ import corallium # Conditionally filter beartype warnings -__version__ = '1.2.4' +__version__ = '1.2.5' __pkg_name__ = 'tail_jsonl' # ====== Above is the recommended code from calcipy_template and may be updated on new releases ======