From 00a0a7ccc22f72f0ec8fea8a6e0f977f84fa2157 Mon Sep 17 00:00:00 2001 From: janjagusch Date: Tue, 7 Mar 2023 14:55:05 +0000 Subject: [PATCH] Publish 0.2.1 SHA256 hashes: quetz_client-0.2.1-py3-none-any.whl: 844bcebdc0df1c208ec14f0dea7fb0e3ef8c2ba48946894039148a251e6a9f11 quetz_client-0.2.1.tar.gz: aec9d50f8beb3ff0db86e62cbd5c0aeec42b5ba1c5ada9eb0d54c2d1e5b5f00b --- CHANGELOG.md | 18 ++++++++++++++++-- pyproject.toml | 2 +- src/quetz_client/_version.py | 2 +- 3 files changed, 18 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9fedbf7..3ee346a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ +## 0.2.1 + +([Full Changelog](https://github.com/mamba-org/quetz-client/compare/v0.2.0...0b113b47da3c1d319dc2724d16f861f49690cbe1)) + +### Maintenance and upkeep improvements + +- Add tests against live `quetz` [#2](https://github.com/mamba-org/quetz-client/pull/2) ([@simonbohnen](https://github.com/simonbohnen)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/mamba-org/quetz-client/graphs/contributors?from=2023-02-28&to=2023-03-07&type=c)) + +[@simonbohnen](https://github.com/search?q=repo%3Amamba-org%2Fquetz-client+involves%3Asimonbohnen+updated%3A2023-02-28..2023-03-07&type=Issues) + + + ## 0.2.0 ([Full Changelog](https://github.com/mamba-org/quetz-client/compare/v0.1.2...310e0f6d1df636e97ba43099f297f5a4102bfe86)) @@ -16,8 +32,6 @@ [@simonbohnen](https://github.com/search?q=repo%3Amamba-org%2Fquetz-client+involves%3Asimonbohnen+updated%3A2023-02-17..2023-02-28&type=Issues) - - ## 0.1.2 ([Full Changelog](https://github.com/mamba-org/quetz-client/compare/v0.1.1...b844539c779a3014c55c8d942d5c5f8b91ba0bc6)) diff --git a/pyproject.toml b/pyproject.toml index c8446f7..a616589 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,7 +33,7 @@ check_untyped_defs = true addopts = "--import-mode=importlib" [tool.tbump.version] -current = "0.2.0" +current = "0.2.1" 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 72294a0..8503611 100644 --- a/src/quetz_client/_version.py +++ b/src/quetz_client/_version.py @@ -1,2 +1,2 @@ -version_info = (0, 2, 0, "", "") +version_info = (0, 2, 1, "", "") __version__ = ".".join(filter(lambda s: len(s) > 0, map(str, version_info)))