diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a917d88..ff4d8eaf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,7 +18,32 @@ Unreleased -## 0.26.0 - 2023-11-08 +## 0.28.0 - 2023-11-14 + +### Bugs fixes 🐛 + +* Disable ConfigParser strict mode to better handling of heterogeneity of QGIS config files by @Guts in + +### Features and enhancements 🎉 + +* Add util to format octets size into human-readable format by @Guts in +* Refacto: add a Git handler base class to inherit from and avoid duplicate code by @Guts in +* Jobs: make downloaded and installed profiles listing more generic by @Guts in +* Enhancement: add a module to read and write QGIS ini files by @Guts in + +### Tooling 🔧 + +* Packaging: renamed license to match Pypi classifier by @Guts in +* Publishing to PyPi: switch to trusted publisher by @Guts in +* Add python 3.12 to tests and supported versions by @Guts in +* Packaging: restore operating system name in final executables by @Guts in +* CI: add discussion category name to link to a GitHub Release by @Guts in + +### Documentation 📖 + +* Add demonstration profile viewer mode by @Guts in + +## 0.27.0 - 2023-11-08 ### Bugs fixes 🐛 diff --git a/qgis_deployment_toolbelt/__about__.py b/qgis_deployment_toolbelt/__about__.py index 08d33d55..3b9318e7 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.27.0" +__version__ = "0.28.0" __version_info__ = tuple( [ int(num) if num.isdigit() else num