From 4a3fa0eef492db374fe42b80ac434bbcd6e91cbb Mon Sep 17 00:00:00 2001 From: janjagusch Date: Wed, 12 Apr 2023 06:33:34 +0000 Subject: [PATCH] Publish 0.5.0 SHA256 hashes: quetz_client-0.5.0-py3-none-any.whl: 8b00d21ebdcfd2b01d64082b59d764f083883a5a320ce6f3c4617504f6abeb20 quetz_client-0.5.0.tar.gz: c955f6e60f08340a42e30d15b318d54e1c70dd8be3cf454a195db30f6414c4e4 --- CHANGELOG.md | 28 ++++++++++++++++++++++++++-- pyproject.toml | 2 +- src/quetz_client/_version.py | 2 +- 3 files changed, 28 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e6c9ca..ec2906a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,32 @@ +## 0.5.0 + +([Full Changelog](https://github.com/mamba-org/quetz-client/compare/v0.4.0...c24cc2576ee637c4af9976205f5754213ea02ff3)) + +### Enhancements made + +- Retry requests other than `GET` on CLI retry [#28](https://github.com/mamba-org/quetz-client/pull/28) ([@borchero](https://github.com/borchero)) + +### Maintenance and upkeep improvements + +- Run CI on push [#31](https://github.com/mamba-org/quetz-client/pull/31) ([@janjagusch](https://github.com/janjagusch)) +- Add auto-update workflow [#25](https://github.com/mamba-org/quetz-client/pull/25) ([@janjagusch](https://github.com/janjagusch)) +- Test against multiple quetz server versions [#24](https://github.com/mamba-org/quetz-client/pull/24) ([@janjagusch](https://github.com/janjagusch)) + +### Other merged PRs + +- Fix autoupdate [#27](https://github.com/mamba-org/quetz-client/pull/27) ([@janjagusch](https://github.com/janjagusch)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/mamba-org/quetz-client/graphs/contributors?from=2023-04-07&to=2023-04-12&type=c)) + +[@borchero](https://github.com/search?q=repo%3Amamba-org%2Fquetz-client+involves%3Aborchero+updated%3A2023-04-07..2023-04-12&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Amamba-org%2Fquetz-client+involves%3Agithub-actions+updated%3A2023-04-07..2023-04-12&type=Issues) | [@janjagusch](https://github.com/search?q=repo%3Amamba-org%2Fquetz-client+involves%3Ajanjagusch+updated%3A2023-04-07..2023-04-12&type=Issues) + + + ## 0.4.0 ([Full Changelog](https://github.com/mamba-org/quetz-client/compare/v0.3.0...bc99296b0869f015145a3e80874c719852d23cf3)) @@ -16,8 +42,6 @@ [@borchero](https://github.com/search?q=repo%3Amamba-org%2Fquetz-client+involves%3Aborchero+updated%3A2023-04-06..2023-04-07&type=Issues) - - ## 0.3.0 ([Full Changelog](https://github.com/mamba-org/quetz-client/compare/v0.2.1...44dfcc9cdf17726aefb8c5df6c2d10f2731b29de)) diff --git a/pyproject.toml b/pyproject.toml index adf6470..f63882f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,7 +33,7 @@ check_untyped_defs = true addopts = "--import-mode=importlib" [tool.tbump.version] -current = "0.4.0" +current = "0.5.0" regex = ''' (?P\d+)\.(?P\d+)\.(?P\d+) ((?Pa|b|rc|.dev)(?P\d+))? diff --git a/src/quetz_client/_version.py b/src/quetz_client/_version.py index 3d256e9..0a5b53a 100644 --- a/src/quetz_client/_version.py +++ b/src/quetz_client/_version.py @@ -1,2 +1,2 @@ -version_info = (0, 4, 0, "", "") +version_info = (0, 5, 0, "", "") __version__ = ".".join(filter(lambda s: len(s) > 0, map(str, version_info)))