From eafad829ad0ffb711217f1d88ebb34dfc5e41e5c Mon Sep 17 00:00:00 2001 From: Winston Chang Date: Mon, 30 Oct 2023 18:42:31 -0500 Subject: [PATCH] Bump version to 0.4.1 and update changelog --- CHANGELOG.md | 5 +++++ htmltools/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fff372..a258a85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.4.1] 2023-10-30 + +* Fixed deserialization of JSON HTML dependencies when they contained newline characters. (#65) + + ## [0.4.0] 2023-10-30 * Added `HTMLTextDocument` class, which takes as input a string representation of an HTML document. (#61) diff --git a/htmltools/__init__.py b/htmltools/__init__.py index be7d050..e248a03 100644 --- a/htmltools/__init__.py +++ b/htmltools/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.4.0" +__version__ = "0.4.1" from . import svg, tags from ._core import TagAttrArg # pyright: ignore[reportUnusedImport] # noqa: F401