From 014d865cca4c5fe9928f392475db21d91a4294ac Mon Sep 17 00:00:00 2001 From: Martin Thoma Date: Sun, 17 Dec 2023 09:12:15 +0100 Subject: [PATCH] REL: 0.3.0 ## What's new ### New Features (ENH) - Add x2pdf command (#25) by @MartinThoma ### Bug Fixes (BUG) - boxes are floats, not int by @MartinThoma - Add missing fpdf2 dependency (#29) by @MartinThoma ### Documentation (DOC) - cat command by @MartinThoma - More examples for the cat subcommand by @MartinThoma - Add cat subcommand by @MartinThoma - Link to readthedocs by @MartinThoma - Add project governance file by @MartinThoma - Move readthedocs config file to root by @MartinThoma - Add docs (#24) by @MartinThoma ### Developer Experience (DEV) - Checkout sample-files in CI (#30) by @MartinThoma - Let dependabot update Github Actions by @MartinThoma - Add action for automatic releases by @MartinThoma ### Maintenance (MAINT) - Update dependencies (#42) by @MartinThoma - In the cat subcommand, replace the usage of the deprecated PdfMerger by PdfWriter (#34) by @kommade - Update .pre-commit-config.yaml by @MartinThoma - Adjust x2pdf syntax by @MartinThoma ### Testing (TST) - cat with two files (#41) by @MartinThoma - Test cat command with more parameters + validate result (#40) by @MartinThoma - Adding unit tests (#28) by @Lucas-C [Full Changelog](https://github.com/py-pdf/pdfly/compare/0.2.14...0.3.0) --- CHANGELOG.md | 39 +++++++++++++++++++++++++++++++++++++++ pdfly/_version.py | 2 +- 2 files changed, 40 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a0cf709..011e805 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1 +1,40 @@ # CHANGELOG + +## Version 0.3.0, 2023-12-17 + +### New Features (ENH) +- Add x2pdf command (#25) + +### Bug Fixes (BUG) +- boxes are floats, not int +- Add missing fpdf2 dependency (#29) + +### Documentation (DOC) +- cat command +- More examples for the cat subcommand +- Add cat subcommand +- Link to readthedocs +- Add project governance file +- Move readthedocs config file to root +- Add docs (#24) + +### Developer Experience (DEV) +- Checkout sample-files in CI (#30) +- Let dependabot update Github Actions +- Add action for automatic releases + +### Maintenance (MAINT) +- Update dependencies (#42) +- In the cat subcommand, replace the usage of the deprecated PdfMerger by PdfWriter (#34) +- Update .pre-commit-config.yaml +- Adjust x2pdf syntax + +### Testing (TST) +- cat with two files (#41) +- Test cat command with more parameters + validate result (#40) +- Adding unit tests (#28) + +### Other +- : [{'msg': 'Bump actions/setup-python from 4 to 5 (#39)', 'author': 'dependabot[bot]'}, {'msg': 'test_extract_images_monochrome() is now passing', 'author': 'CimonLucas(LCM)'}, {'msg': 'Bump actions/setup-python from 3 to 4 (#27)', 'author': 'dependabot[bot]'}, {'msg': 'Bump actions/checkout from 3 to 4 (#26)', 'author': 'dependabot[bot]'}, {'msg': 'Ensure input PDF exists for cat subcommand', 'author': 'MartinThoma'}] + +[Full Changelog](https://github.com/py-pdf/pdfly/compare/0.2.14...0.3.0) diff --git a/pdfly/_version.py b/pdfly/_version.py index f3291e9..493f741 100644 --- a/pdfly/_version.py +++ b/pdfly/_version.py @@ -1 +1 @@ -__version__ = "0.2.14" +__version__ = "0.3.0"