Skip to content

Commit 57ebf0b

Browse files
committed
bump: version 1.4.1 → 1.4.2
1 parent b8b6545 commit 57ebf0b

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ build-backend = "poetry.core.masonry.api"
33
requires = ["poetry-core"]
44

55
[tool.commitizen]
6-
version = "1.4.1"
6+
version = "1.4.2"
77
version_files = ["pyproject.toml:^version", "tail_jsonl/__init__.py:^__version"]
88

99
[tool.mypy]
@@ -44,7 +44,7 @@ maintainers = []
4444
name = "tail_jsonl"
4545
readme = "docs/README.md"
4646
repository = "https://github.com/kyleking/tail-jsonl"
47-
version = "1.4.1"
47+
version = "1.4.2"
4848

4949
[tool.poetry.dependencies]
5050
python = "^3.9.13"

tail_jsonl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from ._runtime_type_check_setup import configure_runtime_type_checking_mode
44

5-
__version__ = '1.4.1'
5+
__version__ = '1.4.2'
66
__pkg_name__ = 'tail_jsonl'
77

88
configure_runtime_type_checking_mode()

tail_jsonl/config.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ def styles_from_dict(data: dict) -> Styles: # type: ignore[type-arg]
1919
class Keys:
2020
"""Special Keys."""
2121

22+
# TODO: Are these dotted keys properly parsed?
2223
timestamp: list[str] = field(default_factory=lambda: ['timestamp', 'time', 'record.time.repr'])
2324
level: list[str] = field(default_factory=lambda: ['level', 'levelname', 'record.level.name'])
2425
message: list[str] = field(default_factory=lambda: ['event', 'message', 'msg', 'record.message'])

0 commit comments

Comments
 (0)