From 893b15d2cb15e9016f3325380dc51b77a31b453d Mon Sep 17 00:00:00 2001 From: Jakub Andrysek Date: Fri, 22 Nov 2024 12:29:34 +0100 Subject: [PATCH] Update changelog for version 1.2.5, modify Makefile to use python3 build tool, and update development dependencies --- CHANGELOG.md | 4 ++++ Makefile | 3 ++- devdeps.txt | 2 ++ setup.py | 2 +- 4 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bdb55a59..45ecb9f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,3 +25,7 @@ All notable changes to this project will be documented in this file. - Fix executable not found when the current working directory (cwd) is set to config file path by @wu-vincent in https://github.com/JakubAndrysek/MkDoxy/pull/103 - **1.2.4** - 2024-05-6 - fix: use absolute links for inherited items by @Nerixyz in https://github.com/JakubAndrysek/MkDoxy/pull/105 +- **1.2.5** - 2024-11-22 + - Fixes: brief description in detailed if there is no detailed description; change the Detailed Description header levelby @DmitriyMarin in https://github.com/JakubAndrysek/MkDoxy/pull/114 + - feat: add function in namespace snippet by @barnou-psee in https://github.com/JakubAndrysek/MkDoxy/pull/116 + - add api-path to project configuration by @dustinlagoy in https://github.com/JakubAndrysek/MkDoxy/pull/112 diff --git a/Makefile b/Makefile index 8a959b5e..312f42b4 100755 --- a/Makefile +++ b/Makefile @@ -3,7 +3,8 @@ # Packaging package: rm -f dist/* - python3 setup.py sdist bdist_wheel + python3 -m build --wheel # Updated to use python3 build tool for wheel + python3 setup.py sdist install: package python3 -m pip install --no-deps --force dist/*.whl diff --git a/devdeps.txt b/devdeps.txt index d9883bd8..4ccaacae 100644 --- a/devdeps.txt +++ b/devdeps.txt @@ -5,3 +5,5 @@ isort~=5.13.2 pytest~=8.2.2 pre-commit~=3.7.0 setuptools~=70.0.0 +build~=1.2.2 +twine~=5.1.1 \ No newline at end of file diff --git a/setup.py b/setup.py index da773156..a7fd0a04 100755 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ def import_dev_requirements(): # https://pypi.org/project/mkdoxy/ setup( name="mkdoxy", - version="1.2.5", + version="1.2.6", description="MkDoxy → MkDocs + Doxygen = easy documentation generator with code snippets", long_description=readme(), long_description_content_type="text/markdown",