From 62129733427913f489313df59eeed5143f3b244c Mon Sep 17 00:00:00 2001 From: Winston Chang Date: Thu, 18 Jul 2024 10:21:01 -0500 Subject: [PATCH] Bump version to 0.5.3 and update changelog --- CHANGELOG.md | 4 ++++ htmltools/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 91112cc..02e63e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to htmltools for Python will be documented in this file. 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.5.3] 2024-07-18 + +* HTML tags in docstrings are now escaped. (#90) + ## [0.5.2] 2024-05-23 * The `HTMLDependency.copy()` method can now correctly copy folders in depenendencies that both include directories and have `all_files=True`. (#87) diff --git a/htmltools/__init__.py b/htmltools/__init__.py index acc7402..3bc59e1 100644 --- a/htmltools/__init__.py +++ b/htmltools/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.5.2" +__version__ = "0.5.3" from . import svg, tags from ._core import TagAttrArg # pyright: ignore[reportUnusedImport] # noqa: F401