From 2f819d41878a298a4e3ec153357d9655c47568e0 Mon Sep 17 00:00:00 2001 From: janjagusch Date: Wed, 21 Jun 2023 11:21:12 +0000 Subject: [PATCH] Publish 0.9.2 SHA256 hashes: quetz-server-0.9.2.tar.gz: f2ea13105dd248f0c23decc777ae1b8a58b260eec7dc40c099718210001ded1b quetz_server-0.9.2-py2.py3-none-any.whl: 050fae29e4b1652aa6744276c9ae240f65f3066c507c4a4c00f33c731008885f --- CHANGELOG.md | 24 ++++++++++++++++++++++-- pyproject.toml | 2 +- quetz/_version.py | 2 +- 3 files changed, 24 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b7778c4a..4174b4cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,28 @@ +## 0.9.2 + +([Full Changelog](https://github.com/mamba-org/quetz/compare/v0.9.1...efd519fd840304fb73fe6fd31ee4ae7f010ab1a2)) + +### Bugs fixed + +- Remove DB dependency for health endpoint [#652](https://github.com/mamba-org/quetz/pull/652) ([@AndreasAlbertQC](https://github.com/AndreasAlbertQC)) +- Do not pass pooling arguments to sqlite [#641](https://github.com/mamba-org/quetz/pull/641) ([@AndreasAlbertQC](https://github.com/AndreasAlbertQC)) + +### Maintenance and upkeep improvements + +- Use PEP-593 Annotated for options and arguments in CLI commands [#644](https://github.com/mamba-org/quetz/pull/644) ([@rominf](https://github.com/rominf)) +- Bump pyright-python version [#643](https://github.com/mamba-org/quetz/pull/643) ([@rominf](https://github.com/rominf)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/mamba-org/quetz/graphs/contributors?from=2023-06-20&to=2023-06-21&type=c)) + +[@AndreasAlbertQC](https://github.com/search?q=repo%3Amamba-org%2Fquetz+involves%3AAndreasAlbertQC+updated%3A2023-06-20..2023-06-21&type=Issues) | [@codecov-commenter](https://github.com/search?q=repo%3Amamba-org%2Fquetz+involves%3Acodecov-commenter+updated%3A2023-06-20..2023-06-21&type=Issues) | [@rominf](https://github.com/search?q=repo%3Amamba-org%2Fquetz+involves%3Arominf+updated%3A2023-06-20..2023-06-21&type=Issues) + + + ## 0.9.1 ([Full Changelog](https://github.com/mamba-org/quetz/compare/v0.9.0...13f588cc16560c78927e4b2406a77958a62d5ca6)) @@ -20,8 +42,6 @@ [@janjagusch](https://github.com/search?q=repo%3Amamba-org%2Fquetz+involves%3Ajanjagusch+updated%3A2023-06-05..2023-06-20&type=Issues) - - ## 0.9.0 ([Full Changelog](https://github.com/mamba-org/quetz/compare/v0.8.0...935be5b02961e952396ca1fac20e073ec8907062)) diff --git a/pyproject.toml b/pyproject.toml index abd12f30..95bd793c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ check-imports = ["quetz"] ignore = ["W004"] [tool.tbump.version] -current = "0.9.1" +current = "0.9.2" regex = ''' (?P\d+)\.(?P\d+)\.(?P\d+) ((?Pa|b|rc|.dev)(?P\d+))? diff --git a/quetz/_version.py b/quetz/_version.py index f9545af8..7e2da70f 100644 --- a/quetz/_version.py +++ b/quetz/_version.py @@ -1,2 +1,2 @@ -version_info = (0, 9, 1, "", "") +version_info = (0, 9, 2, "", "") __version__ = '.'.join(filter(lambda s: len(s) > 0, map(str, version_info)))