diff --git a/CHANGELOG.md b/CHANGELOG.md index ac08a50..7bd56af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ [TOC] +## 1.5.3 + +- Make `blockquote` work correctly! +- Additional note for 1.5.2: Add Python 12 packages + ## 1.5.2 - FIXED: Add `titile` support for images diff --git a/CMakeLists.txt b/CMakeLists.txt index 4f1fa2e..c93be00 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.8) -project(html2md VERSION 1.5.2 LANGUAGES CXX) +project(html2md VERSION 1.5.3 LANGUAGES CXX) set(PROJECT_HOMEPAGE_URL "https://tim-gromeyer.github.io/html2md/") set(html2md_HOMEPAGE_URL "${PROJECT_HOMEPAGE_URL}") diff --git a/setup.py b/setup.py index 06e4a30..1bd20d3 100644 --- a/setup.py +++ b/setup.py @@ -130,7 +130,7 @@ def build_extension(self, ext: CMakeExtension) -> None: # logic and declaration, and simpler if you include description/version in a file. setup( name="pyhtml2md", - version="1.5.2", + version="1.5.3", author="Tim Gromeyer", author_email="sakul8826@gmail.com", description="Transform your HTML into clean, easy-to-read markdown with pyhtml2md.",