Skip to content

Commit 11074c2

Browse files
committed
chore: v0.4.2
1 parent 1d817a2 commit 11074c2

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

docs/changelog.md

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

3+
### v0.4.2
4+
- FIX: Fixed serialization of extended fields (e.g., DevTools) in HarLog dump. Now all additional fields are correctly preserved when calling model_dump().
5+
36
### v0.4.1
47
- FIX: Removed the mistakenly added `rich` dependency from the requirements.
58

@@ -44,4 +47,4 @@
4447

4548
## v0.1.0
4649

47-
- Initial release of `hario-core`.
50+
- Initial release of `hario-core`.

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.1"
7+
version = "0.4.2"
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.1"
109+
version = "0.4.2"
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.1"
5+
__version__ = "0.4.2"
66

77
from . import models, parse, transform
88

0 commit comments

Comments
 (0)