Skip to content

Commit

Permalink
bump: version 1.1.0 → 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleKing committed Feb 7, 2023
1 parent 26ef4a6 commit 0163094
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
9 changes: 5 additions & 4 deletions docs/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## Unreleased

### Fix

- bump 1.1 without release
- test loading user config and escaping dot-notation

### Feat

- use a symbol to indicate each line
Expand All @@ -13,10 +18,6 @@
- switch to beartype.typing
- folded text doesn't work as expected

### Fix

- test loading user config and escaping dot-notation

## 1.0.0 (2023-01-31)

### Feat
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ pythons = ["3.8"]

[tool.commitizen]
name = "cz_conventional_commits"
version = "1.1.0"
version = "1.1.1"
version_files = ["pyproject.toml", "tail_jsonl/__init__.py"]

[tool.isort]
Expand Down Expand Up @@ -42,7 +42,7 @@ maintainers = []
name = "tail_jsonl"
readme = "docs/README.md"
repository = "https://github.com/kyleking/tail-jsonl"
version = "1.1.0"
version = "1.1.1"

[tool.poetry.dependencies]
python = "^3.8.12"
Expand Down
2 changes: 1 addition & 1 deletion tail_jsonl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from beartype.roar import BeartypeDecorHintPep585DeprecationWarning
from loguru import logger # noqa: F401

__version__ = '1.1.0'
__version__ = '1.1.1'
__pkg_name__ = 'tail_jsonl'

# ====== Above is the recommended code from calcipy_template and may be updated on new releases ======
Expand Down

0 comments on commit 0163094

Please sign in to comment.