Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: bump version to 0.35.0 #545

Merged
merged 1 commit into from
Sep 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://github.com/Guts/qgis-deployment-cli/pull/540>
* feature(downloader): add option to control over stream mode by @Guts in <https://github.com/Guts/qgis-deployment-cli/pull/541>
* Enhancement: rename shortcut module and improve docstring/type hints consistency by @Guts in <https://github.com/Guts/qgis-deployment-cli/pull/543>
* feature(downloader): add option to disable SSL verification by @Guts in <https://github.com/Guts/qgis-deployment-cli/pull/544>

### Tooling 🔧

* update(packaging): use Python 3.12 to build packages by @Guts in <https://github.com/Guts/qgis-deployment-cli/pull/542>

### Documentation 📖

* fix(docs): value must be quoted in PowerShell command to set env vars by @Guts in <https://github.com/Guts/qgis-deployment-cli/pull/536>

## 0.34.5 - 2024-06-06

### Bugs fixes 🐛
Expand Down
2 changes: 1 addition & 1 deletion qgis_deployment_toolbelt/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down