From eac2377a16033ea1fc113aa821990f4fc180e82c Mon Sep 17 00:00:00 2001 From: Kyle King Date: Tue, 31 Jan 2023 07:39:05 -0500 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.0.1=20=E2=86=92=201.0.0?= 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 62e3bb1..01e86c6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ pythons = ["3.8"] [tool.commitizen] name = "cz_conventional_commits" -version = "0.0.1" +version = "1.0.0" version_files = ["pyproject.toml", "tail_jsonl/__init__.py"] [tool.isort] @@ -42,7 +42,7 @@ maintainers = [] name = "tail_jsonl" readme = "docs/README.md" repository = "https://github.com/kyleking/tail-jsonl" -version = "0.0.1" +version = "1.0.0" [tool.poetry.dependencies] python = "^3.8.12" diff --git a/tail_jsonl/__init__.py b/tail_jsonl/__init__.py index 60bf381..ca0c88c 100644 --- a/tail_jsonl/__init__.py +++ b/tail_jsonl/__init__.py @@ -5,7 +5,7 @@ from beartype.roar import BeartypeDecorHintPep585DeprecationWarning from loguru import logger # noqa: F401 -__version__ = '0.0.1' +__version__ = '1.0.0' __pkg_name__ = 'tail_jsonl' # ====== Above is the recommended code from calcipy_template and may be updated on new releases ======