Skip to content

Commit

Permalink
Release v1.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-gromeyer committed Aug 8, 2023
1 parent 5fb0a21 commit 70a3f58
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

[TOC]

## v1.4.4

- New release with Python 3.11 support/packages
- Updated internal dependencies

## v1.4.3

- Improved performance
Expand Down
3 changes: 1 addition & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
cmake_minimum_required(VERSION 3.8)
project(html2md VERSION 1.4.3
LANGUAGES CXX)
project(html2md VERSION 1.4.4 LANGUAGES CXX)

set(PROJECT_HOMEPAGE_URL "https://tim-gromeyer.github.io/html2md/")
set(html2md_HOMEPAGE_URL "${PROJECT_HOMEPAGE_URL}")
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def build_extension(self, ext: CMakeExtension) -> None:
f"-DCMAKE_LIBRARY_OUTPUT_DIRECTORY={extdir}{os.sep}",
f"-DPYTHON_EXECUTABLE={sys.executable}",
f"-DCMAKE_BUILD_TYPE={cfg}", # not used on MSVC, but no harm
f"-DPYTHON_BINDINGS=ON",
"-DPYTHON_BINDINGS=ON",
]
build_args = []
# Adding CMake arguments set as environment variable
Expand Down Expand Up @@ -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.3",
version="1.4.4",
author="Tim Gromeyer",
author_email="sakul8826@gmail.com",
description="Transform your HTML into clean, easy-to-read markdown with pyhtml2md.",
Expand Down

0 comments on commit 70a3f58

Please sign in to comment.