Skip to content

Commit 5e31057

Browse files
authored
Hotfix 0.4.1 (#5)
v0.4.1 FIX: Removed the mistakenly added rich dependency from the requirements. * chore: rm rich as dep * chore: bump to 0.4.1 + changelog
1 parent c13de58 commit 5e31057

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
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 & 3 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"
@@ -35,7 +35,6 @@ keywords = [
3535
dependencies = [
3636
"pydantic>=2.5.0",
3737
"orjson==3.10.18",
38-
"rich==13.9.4",
3938
]
4039

4140
[project.optional-dependencies]
@@ -107,7 +106,7 @@ convention = "google"
107106

108107
[tool.poetry]
109108
name = "hario-core"
110-
version = "0.4.0"
109+
version = "0.4.1"
111110
description = "Modern, type-safe, and extensible library for parsing, transforming, and analyzing HAR (HTTP Archive) files."
112111
authors = ["Vasiliy Pikulev <pikulev.vasiliy@gmail.com>"]
113112
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)