Skip to content

Commit 893b15d

Browse files
committed
Update changelog for version 1.2.5, modify Makefile to use python3 build tool, and update development dependencies
1 parent db75455 commit 893b15d

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,7 @@ All notable changes to this project will be documented in this file.
2525
- 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
2626
- **1.2.4** - 2024-05-6
2727
- fix: use absolute links for inherited items by @Nerixyz in https://github.com/JakubAndrysek/MkDoxy/pull/105
28+
- **1.2.5** - 2024-11-22
29+
- 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
30+
- feat: add function in namespace snippet by @barnou-psee in https://github.com/JakubAndrysek/MkDoxy/pull/116
31+
- add api-path to project configuration by @dustinlagoy in https://github.com/JakubAndrysek/MkDoxy/pull/112

Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
# Packaging
44
package:
55
rm -f dist/*
6-
python3 setup.py sdist bdist_wheel
6+
python3 -m build --wheel # Updated to use python3 build tool for wheel
7+
python3 setup.py sdist
78

89
install: package
910
python3 -m pip install --no-deps --force dist/*.whl

devdeps.txt

+2
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@ isort~=5.13.2
55
pytest~=8.2.2
66
pre-commit~=3.7.0
77
setuptools~=70.0.0
8+
build~=1.2.2
9+
twine~=5.1.1

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def import_dev_requirements():
2626
# https://pypi.org/project/mkdoxy/
2727
setup(
2828
name="mkdoxy",
29-
version="1.2.5",
29+
version="1.2.6",
3030
description="MkDoxy → MkDocs + Doxygen = easy documentation generator with code snippets",
3131
long_description=readme(),
3232
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)