From 77d552463d9bd553b847a33ff5c450d874d57eb9 Mon Sep 17 00:00:00 2001 From: Tim Gromeyer Date: Fri, 26 May 2023 11:36:28 +0200 Subject: [PATCH] Prepare v1.4.3 --- CHANGELOG.md | 6 ++++++ CMakeLists.txt | 2 +- setup.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 990fc88..9e2bb18 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ [TOC] +## v1.4.3 + +- Improved performance +- Updated 3rdparty tools (for creating python packages and creating releases) +- Fix code example + ## v1.4.2 - Fixed windows release build are linked against debug libraries diff --git a/CMakeLists.txt b/CMakeLists.txt index 112831e..002673d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.8) -project(html2md VERSION 1.4.2 +project(html2md VERSION 1.4.3 LANGUAGES CXX) set(PROJECT_HOMEPAGE_URL "https://tim-gromeyer.github.io/html2md/") diff --git a/setup.py b/setup.py index 5544b2f..ca42281 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.4.2", + version="1.4.3", author="Tim Gromeyer", author_email="sakul8826@gmail.com", description="Transform your HTML into clean, easy-to-read markdown with pyhtml2md.",