From 1b7d7d9af51db657c99f49397b334c5c0337977e Mon Sep 17 00:00:00 2001 From: Kyle King Date: Sat, 25 Feb 2023 14:28:32 -0500 Subject: [PATCH] =?UTF-8?q?bump:=20version=201.2.0=20=E2=86=92=201.2.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 4 ++-- tail_jsonl/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d5dd38f..3fa2e83 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.0" +version = "1.2.1" 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.0" +version = "1.2.1" [tool.poetry.dependencies] python = "^3.8.12" diff --git a/tail_jsonl/__init__.py b/tail_jsonl/__init__.py index 53e4cbb..f6ea755 100644 --- a/tail_jsonl/__init__.py +++ b/tail_jsonl/__init__.py @@ -2,7 +2,7 @@ import corallium # Conditionally filter beartype warnings -__version__ = '1.2.0' +__version__ = '1.2.1' __pkg_name__ = 'tail_jsonl' # ====== Above is the recommended code from calcipy_template and may be updated on new releases ======