diff --git a/docs/docs/CHANGELOG.md b/docs/docs/CHANGELOG.md index 2782ee1..34069ff 100644 --- a/docs/docs/CHANGELOG.md +++ b/docs/docs/CHANGELOG.md @@ -2,6 +2,12 @@ ### Fix +- show non-JSON lines + +## 1.1.1 (2023-02-06) + +### Fix + - bump 1.1 without release - test loading user config and escaping dot-notation diff --git a/pyproject.toml b/pyproject.toml index 5803f10..2bd425b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ pythons = ["3.8"] [tool.commitizen] name = "cz_conventional_commits" -version = "1.1.1" +version = "1.1.2" 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 = "1.1.1" +version = "1.1.2" [tool.poetry.dependencies] python = "^3.8.12" diff --git a/tail_jsonl/__init__.py b/tail_jsonl/__init__.py index d3d0bb6..f625a37 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__ = '1.1.1' +__version__ = '1.1.2' __pkg_name__ = 'tail_jsonl' # ====== Above is the recommended code from calcipy_template and may be updated on new releases ======