From 76f3fdab51a5686f22ef0ac4df470b29a855e4c8 Mon Sep 17 00:00:00 2001 From: janjagusch Date: Thu, 28 Sep 2023 15:51:06 +0000 Subject: [PATCH] Publish 0.10.2 SHA256 hashes: quetz-server-0.10.2.tar.gz: efbea1901daf7172ecce451180e70103f47ddeb4791e2ecdc21ec6ab24610292 quetz_server-0.10.2-py2.py3-none-any.whl: 5330fc581248d01c609fac8c465761a82822071296284cc730092bc0da752968 --- 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 9f8e83d2..e9ce4093 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ +## 0.10.2 + +([Full Changelog](https://github.com/mamba-org/quetz/compare/v0.10.1...3cbd27a2356c9ff07fc80fef5888acb71fc2d7f7)) + +### Bugs fixed + +- Fix set user roles when role is None [#669](https://github.com/mamba-org/quetz/pull/669) ([@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-09-28&to=2023-09-28&type=c)) + +[@janjagusch](https://github.com/search?q=repo%3Amamba-org%2Fquetz+involves%3Ajanjagusch+updated%3A2023-09-28..2023-09-28&type=Issues) + + + ## 0.10.1 ([Full Changelog](https://github.com/mamba-org/quetz/compare/v0.10.0...ef6836a7c887dc97a89d8b5cce4472a03740b692)) @@ -17,8 +33,6 @@ [@codecov-commenter](https://github.com/search?q=repo%3Amamba-org%2Fquetz+involves%3Acodecov-commenter+updated%3A2023-09-11..2023-09-28&type=Issues) | [@mbestipa](https://github.com/search?q=repo%3Amamba-org%2Fquetz+involves%3Ambestipa+updated%3A2023-09-11..2023-09-28&type=Issues) | [@wolfv](https://github.com/search?q=repo%3Amamba-org%2Fquetz+involves%3Awolfv+updated%3A2023-09-11..2023-09-28&type=Issues) - - ## 0.10.0 ([Full Changelog](https://github.com/mamba-org/quetz/compare/v0.9.2...0854d442d1b20b7eb90e023eef27527b722fbcc6)) diff --git a/pyproject.toml b/pyproject.toml index 729c22d8..73ca41e8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ check-imports = ["quetz"] ignore = ["W004"] [tool.tbump.version] -current = "0.10.1" +current = "0.10.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 5feb7a00..a8e63e10 100644 --- a/quetz/_version.py +++ b/quetz/_version.py @@ -1,2 +1,2 @@ -version_info = (0, 10, 1, "", "") +version_info = (0, 10, 2, "", "") __version__ = '.'.join(filter(lambda s: len(s) > 0, map(str, version_info)))