Skip to content

Commit

Permalink
Update changelog for version 1.2.5, modify Makefile to use python3 bu…
Browse files Browse the repository at this point in the history
…ild tool, and update development dependencies
  • Loading branch information
JakubAndrysek committed Nov 22, 2024
1 parent db75455 commit 893b15d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions devdeps.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 893b15d

Please sign in to comment.