From 1f67ed414b3c6b8e0cd3cb25af097d4619b7006c Mon Sep 17 00:00:00 2001 From: Tim Gromeyer Date: Sat, 1 Jun 2024 11:35:41 +0200 Subject: [PATCH] Prepare v1.6.0 --- CHANGELOG.md | 7 +++++++ CMakeLists.txt | 2 +- pyproject.toml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d835dd..3e9a073 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ [TOC] +## 1.6.0 + +- Add option for soft line break +- Add option for hard line break +- Fix handling of self-closing tags +- Updated python package building (see #100) + ## 1.5.4 - Fix crash (see #67) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3d4bae4..20c5ffa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.8) -project(html2md VERSION 1.5.4 LANGUAGES CXX) +project(html2md VERSION 1.6.0 LANGUAGES CXX) set(PROJECT_HOMEPAGE_URL "https://tim-gromeyer.github.io/html2md/") set(html2md_HOMEPAGE_URL "${PROJECT_HOMEPAGE_URL}") diff --git a/pyproject.toml b/pyproject.toml index 28f0c39..344e72e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ description = "Transform your HTML into clean, easy-to-read markdown with pyhtml readme = "python/README.md" requires-python = ">=3.7" license = { text = "MIT" } -version = "1.5.4" +version = "1.6.0" classifiers = [ "Intended Audience :: Developers", "License :: OSI Approved :: MIT License",