From e2df351e47aa68688599c2a9130ea80fbb646574 Mon Sep 17 00:00:00 2001 From: Winston Chang Date: Tue, 29 Oct 2024 15:15:07 -0500 Subject: [PATCH] Bump version to 0.6.0 --- CHANGELOG.md | 2 +- htmltools/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 27b89ab..1bd3595 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] YYYY-MM-DD +## [0.6.0] 2024-10-29 ### Breaking changes diff --git a/htmltools/__init__.py b/htmltools/__init__.py index cfe1bb6..b126b00 100644 --- a/htmltools/__init__.py +++ b/htmltools/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.5.3.9002" +__version__ = "0.6.0" from . import svg, tags from ._core import TagAttrArg # pyright: ignore[reportUnusedImport] # noqa: F401