Skip to content

Commit

Permalink
Prepare v1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-gromeyer committed Jan 20, 2023
1 parent 8dbb7ff commit fa3e6f2
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

[TOC]

## v1.4.1

- **Fixed <u>ALL</u> 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!
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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/")
Expand Down
2 changes: 1 addition & 1 deletion docs/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
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.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.",
Expand Down

0 comments on commit fa3e6f2

Please sign in to comment.