diff --git a/CHANGELOG.md b/CHANGELOG.md index dcc6bea8..bde34f87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,43 @@ Unreleased +## 0.30.0 - 2023-12-29 + +### Bugs fixes 🐛 + +* Fix: splash screen removal by @Guts in + +### Features and enhancements 🎉 + +* Security: increase security scans and improve related documentation by @Guts in +* Feature: download from http (part 1) by @Guts in +* feature: add util to get ProxyHandler and cache some recurring functions by @Guts in +* feature: use proxy handler in file downloader by @Guts in +* feature: add simple http client by @Guts in +* improvement: use proxy handle in upgrade sub-command by @Guts in +* log: on Linux, add distribution name and version by @Guts in +* log: add details about how QDT working folder is determined by @Guts in +* Change: move QDT subfolders to generic job by @Guts in +* Refacto: use requests to download files by @Guts in +* Refacto: remove dead code by @Guts in +* Feature: add file size to downloader log by @Guts in +* Feature: add log filepath on exit error by @Guts in +* feature: HTTP downloader refacto part 2 by @Guts in +* feature: add function name to log by @Guts in +* tests: add more scenarii and factorize test by @Guts in +* feature: QdtProfile has now shortcuts to access to ini files and its installed alter-ego by @Guts in +* Feature: improve splash screen manager logic by using ini helper intensively by @Guts in + +### Tooling 🔧 + +* tooling: add SonarCloud configuration file by @Guts in + +### Documentation 📖 + +* docs: improve development guide by @Guts in +* docs: update qprofiles-manager with deprecated 'git' value by @Guts in +* tooling: add SonarCloud badge by @Guts in + ## 0.30.0-beta2 - 2023-12-29 ### Features and enhancements 🎉 diff --git a/qgis_deployment_toolbelt/__about__.py b/qgis_deployment_toolbelt/__about__.py index 1f3e5bc8..5d967c8b 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.30.0-beta2" +__version__ = "0.30.0" __version_info__ = tuple( [ int(num) if num.isdigit() else num