diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 9b19855..f0f5d53 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - - repo: https://github.com/ambv/black - rev: 22.3.0 + - repo: https://github.com/psf/black + rev: "24.2.0" hooks: - id: black language_version: python3 diff --git a/CHANGELOG.md b/CHANGELOG.md index 021f2d7..91112cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ 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). -## [UNRELEASED] +## [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 c92d60b..acc7402 100644 --- a/htmltools/__init__.py +++ b/htmltools/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.5.1" +__version__ = "0.5.2" from . import svg, tags from ._core import TagAttrArg # pyright: ignore[reportUnusedImport] # noqa: F401 diff --git a/pyproject.toml b/pyproject.toml index 4328d46..99c9aeb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,7 +43,7 @@ test = [ "syrupy>=4.6.0" ] dev = [ - "black>=23.1.0", + "black>=24.2.0", "flake8>=6.0.0", "Flake8-pyproject", "isort>=5.11.2",