Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

### v0.4.1
- FIX: Removed the mistakenly added `rich` dependency from the requirements.

### v0.4.0
- BREAKING: The old `flatten` (which stringifies nested structures) is now called `stringify`.
- BREAKING: The new `flatten` has different behavior—please update your code if you relied on the old flatten logic.
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[project]
name = "hario-core"
version = "0.4.0"
version = "0.4.1"
description = "Modern, type-safe, and extensible library for parsing, transforming, and analyzing HAR (HTTP Archive) files."
authors = [{name = "Vasiliy Pikulev", email = "pikulev.vasiliy@gmail.com"}]
readme = "README.md"
Expand Down Expand Up @@ -35,7 +35,6 @@ keywords = [
dependencies = [
"pydantic>=2.5.0",
"orjson==3.10.18",
"rich==13.9.4",
]

[project.optional-dependencies]
Expand Down Expand Up @@ -107,7 +106,7 @@ convention = "google"

[tool.poetry]
name = "hario-core"
version = "0.4.0"
version = "0.4.1"
description = "Modern, type-safe, and extensible library for parsing, transforming, and analyzing HAR (HTTP Archive) files."
authors = ["Vasiliy Pikulev <pikulev.vasiliy@gmail.com>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/hario_core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Hario Core package root.
"""

__version__ = "0.4.0"
__version__ = "0.4.1"

from . import models, parse, transform

Expand Down