From 69acce5fc888b5129ad9caf1d9ec75f3e3a1c89e Mon Sep 17 00:00:00 2001 From: janjagusch Date: Wed, 5 Apr 2023 07:07:20 +0000 Subject: [PATCH] Publish 0.6.3 SHA256 hashes: quetz-server-0.6.3.tar.gz: cb4bb1acf56610c47fce9f1097af3385c6dae9a45ad822cae110e27f52ec36a3 quetz_server-0.6.3-py2.py3-none-any.whl: eef8669dbc628619cfff0042dd7952a7dbc48c23ee7680c8a78edfa36a1456a2 --- CHANGELOG.md | 18 ++++++++++++++++-- pyproject.toml | 2 +- quetz/_version.py | 2 +- 3 files changed, 18 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e670c2c3..e38953e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ +## 0.6.3 + +([Full Changelog](https://github.com/mamba-org/quetz/compare/v0.6.2...794eccb91e775e3ff3466839dbfe65a226926615)) + +### Bugs fixed + +- Cast starlette URL to str [#618](https://github.com/mamba-org/quetz/pull/618) ([@janjagusch](https://github.com/janjagusch)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/mamba-org/quetz/graphs/contributors?from=2023-02-20&to=2023-04-05&type=c)) + +[@janjagusch](https://github.com/search?q=repo%3Amamba-org%2Fquetz+involves%3Ajanjagusch+updated%3A2023-02-20..2023-04-05&type=Issues) + + + ## 0.6.2 ([Full Changelog](https://github.com/mamba-org/quetz/compare/v0.6.1...daa8d07d62703601ca236fe4bfaaa23132f781dd)) @@ -31,8 +47,6 @@ [@codecov-commenter](https://github.com/search?q=repo%3Amamba-org%2Fquetz+involves%3Acodecov-commenter+updated%3A2023-02-16..2023-02-20&type=Issues) | [@janjagusch](https://github.com/search?q=repo%3Amamba-org%2Fquetz+involves%3Ajanjagusch+updated%3A2023-02-16..2023-02-20&type=Issues) | [@simonbohnen](https://github.com/search?q=repo%3Amamba-org%2Fquetz+involves%3Asimonbohnen+updated%3A2023-02-16..2023-02-20&type=Issues) - - ## 0.6.1 ([Full Changelog](https://github.com/mamba-org/quetz/compare/v0.6.0...ff885bc0de3505329a6f15adc9c51e112e50c887)) diff --git a/pyproject.toml b/pyproject.toml index 1a92548d..2149d1fc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ check-imports = ["quetz"] ignore = ["W004"] [tool.tbump.version] -current = "0.6.2" +current = "0.6.3" regex = ''' (?P\d+)\.(?P\d+)\.(?P\d+) ((?Pa|b|rc|.dev)(?P\d+))? diff --git a/quetz/_version.py b/quetz/_version.py index 003a6929..f0a21b6e 100644 --- a/quetz/_version.py +++ b/quetz/_version.py @@ -1,2 +1,2 @@ -version_info = (0, 6, 2, "", "") +version_info = (0, 6, 3, "", "") __version__ = '.'.join(filter(lambda s: len(s) > 0, map(str, version_info)))