diff --git a/CHANGELOG.md b/CHANGELOG.md index fc3ebdc2..c3217a2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,23 @@ Unreleased --> +## 0.35.0 - 2024-09-02 + +### Features and enhancements 🎉 + +* refacto(cleanup): fix some type hints and relative imports by @Guts in +* feature(downloader): add option to control over stream mode by @Guts in +* Enhancement: rename shortcut module and improve docstring/type hints consistency by @Guts in +* feature(downloader): add option to disable SSL verification by @Guts in + +### Tooling 🔧 + +* update(packaging): use Python 3.12 to build packages by @Guts in + +### Documentation 📖 + +* fix(docs): value must be quoted in PowerShell command to set env vars by @Guts in + ## 0.34.5 - 2024-06-06 ### Bugs fixes 🐛 diff --git a/qgis_deployment_toolbelt/__about__.py b/qgis_deployment_toolbelt/__about__.py index b992ef1a..0111b1df 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.34.5" +__version__ = "0.35.0" __version_info__ = tuple( [ int(num) if num.isdigit() else num