diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e20e5d0..b72e2a1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,9 @@ jobs: - os: ubuntu-22.04 files: | build/packages/html2md*.deb - + - os: windows-latest + files: | + build/packages/html2md*.zip steps: - name: Checkout repo uses: actions/checkout@v3 diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index 30df38a..a0bf37f 100644 --- a/.github/workflows/website.yml +++ b/.github/workflows/website.yml @@ -19,7 +19,7 @@ jobs: echo "PROJECT_NUMBER = ${{ github.ref_name }}" >> docs/Doxyfile - name: Run Doxygen - uses: mattnotmitt/doxygen-action@v1.9.4 + uses: mattnotmitt/doxygen-action@edge with: doxyfile-path: 'docs/Doxyfile' diff --git a/CHANGELOG.md b/CHANGELOG.md index f956428..71f67a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ [TOC] +## v1.4.1 + +- **Fixed ALL memory leaks** +- Fixed bugs(`html2md::Options::includeTitle` not working) +- Added more tests +- Documentation: Updated Doxygen to v1.9.6 +- Include Windows to releases + ## v1.4.0 - Improved CMake support massively! diff --git a/CMakeLists.txt b/CMakeLists.txt index 8dbf54e..de65058 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.8) -project(html2md VERSION 1.4.0 +project(html2md VERSION 1.4.1 LANGUAGES CXX) set(PROJECT_HOMEPAGE_URL "https://tim-gromeyer.github.io/html2md/") diff --git a/docs/Doxyfile b/docs/Doxyfile index ba8e096..5fa810d 100644 --- a/docs/Doxyfile +++ b/docs/Doxyfile @@ -39,7 +39,7 @@ INTERACTIVE_SVG = YES TOC_EXPAND = YES TOC_INCLUDE_HEADINGS = 5 -# Fix dark mode not deactivatable +# Fix dark mode not deactivatable(Doxygen v1.9.6) HTML_COLORSTYLE = TOGGLE # Tests diff --git a/setup.py b/setup.py index d0e57e2..e0f5ab6 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.0", + version="1.4.1", author="Tim Gromeyer", author_email="sakul8826@gmail.com", description="Transform your HTML into clean, easy-to-read markdown with pyhtml2md.",