Skip to content

Commit 91c1b74

Browse files
committed
chore: bump to 0.4.1 + changelog
1 parent 10c877d commit 91c1b74

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

docs/changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
### v0.4.1
4+
- FIX: Removed the mistakenly added `rich` dependency from the requirements.
5+
36
### v0.4.0
47
- BREAKING: The old `flatten` (which stringifies nested structures) is now called `stringify`.
58
- BREAKING: The new `flatten` has different behavior—please update your code if you relied on the old flatten logic.

pyproject.toml

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

55
[project]
66
name = "hario-core"
7-
version = "0.4.0"
7+
version = "0.4.1"
88
description = "Modern, type-safe, and extensible library for parsing, transforming, and analyzing HAR (HTTP Archive) files."
99
authors = [{name = "Vasiliy Pikulev", email = "pikulev.vasiliy@gmail.com"}]
1010
readme = "README.md"
@@ -106,7 +106,7 @@ convention = "google"
106106

107107
[tool.poetry]
108108
name = "hario-core"
109-
version = "0.4.0"
109+
version = "0.4.1"
110110
description = "Modern, type-safe, and extensible library for parsing, transforming, and analyzing HAR (HTTP Archive) files."
111111
authors = ["Vasiliy Pikulev <pikulev.vasiliy@gmail.com>"]
112112
readme = "README.md"

src/hario_core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Hario Core package root.
33
"""
44

5-
__version__ = "0.4.0"
5+
__version__ = "0.4.1"
66

77
from . import models, parse, transform
88

0 commit comments

Comments
 (0)