diff --git a/docs/changelog.md b/docs/changelog.md index f71d82f..58dda54 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -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. diff --git a/pyproject.toml b/pyproject.toml index 518e0ec..e86db14 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" @@ -35,7 +35,6 @@ keywords = [ dependencies = [ "pydantic>=2.5.0", "orjson==3.10.18", - "rich==13.9.4", ] [project.optional-dependencies] @@ -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 "] readme = "README.md" diff --git a/src/hario_core/__init__.py b/src/hario_core/__init__.py index db030ed..9fbca5a 100644 --- a/src/hario_core/__init__.py +++ b/src/hario_core/__init__.py @@ -2,7 +2,7 @@ Hario Core package root. """ -__version__ = "0.4.0" +__version__ = "0.4.1" from . import models, parse, transform