From 88e076a68dbf80403a1006109f608b9636850ff2 Mon Sep 17 00:00:00 2001 From: Tim Gromeyer Date: Sat, 12 Aug 2023 00:37:26 +0200 Subject: [PATCH] Prepare v1.5.0 --- 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 b6743a9..8e436f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ [TOC] +## v1.5.0 + +- **Added a option to Format Markdown Tables** +- More tests +- Reworked cli program for better usability + ## v1.4.4 - New release with Python 3.11 support/packages diff --git a/CMakeLists.txt b/CMakeLists.txt index 8981b92..1ec3b52 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.8) -project(html2md VERSION 1.4.4 LANGUAGES CXX) +project(html2md VERSION 1.5.0 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 3d028fe..8fcf19c 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.4", + version="1.5.0", author="Tim Gromeyer", author_email="sakul8826@gmail.com", description="Transform your HTML into clean, easy-to-read markdown with pyhtml2md.",