From 441355a8a5bab6ef626b731649dae5b98cf3d5eb Mon Sep 17 00:00:00 2001 From: Julien Date: Wed, 8 Nov 2023 15:47:42 +0100 Subject: [PATCH] Bump to 0.27.0 --- CHANGELOG.md | 35 +++++++++++++++++++++++++++ qgis_deployment_toolbelt/__about__.py | 2 +- 2 files changed, 36 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ba3342c..1a917d88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,41 @@ Unreleased --> + + +## 0.26.0 - 2023-11-08 + +### Bugs fixes 🐛 + +* Fix missing shortcut template in packaging by @Guts in + +### Features and enhancements 🎉 + +* Support custom HTTP proxy setting: QDT_PROXY_HTTP by @Guts in +* Refacto: move shortcuts related code into specific subpkg by @Guts in +* Quality: global project improvements and clean up by @Guts in + +### Tooling 🔧 + +* Improve setup: add extras and factorize requirements loading by @Guts in +* Switch license from LGPL3 to Apache License 2 by @Guts in +* Packaging: improve output name and PyInstaller options by @Guts in +* Tooling: update VS Code config by @Guts in + +### Documentation 📖 + +* Mise à jour documentation by @sigeal in + +### Other Changes + +* Update Pillow to fix CVE related to libwebp by @Guts in + +## New Contributors + +* @sigeal made their first contribution in + +**Full Changelog**: + ## 0.26.0 - 2023-06-11 ### Bugs fixes 🐛 diff --git a/qgis_deployment_toolbelt/__about__.py b/qgis_deployment_toolbelt/__about__.py index d63d949a..08d33d55 100644 --- a/qgis_deployment_toolbelt/__about__.py +++ b/qgis_deployment_toolbelt/__about__.py @@ -36,7 +36,7 @@ __uri_tracker__ = f"{__uri_repository__}issues/" __uri__ = __uri_repository__ -__version__ = "0.26.0" +__version__ = "0.27.0" __version_info__ = tuple( [ int(num) if num.isdigit() else num