diff --git a/CHANGELOG.md b/CHANGELOG.md index ae3dcf9..4e6c9ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ +## 0.4.0 + +([Full Changelog](https://github.com/mamba-org/quetz-client/compare/v0.3.0...bc99296b0869f015145a3e80874c719852d23cf3)) + +### Enhancements made + +- Add flag for HTTP retries to CLI tool [#23](https://github.com/mamba-org/quetz-client/pull/23) ([@borchero](https://github.com/borchero)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/mamba-org/quetz-client/graphs/contributors?from=2023-04-06&to=2023-04-07&type=c)) + +[@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)) @@ -16,8 +32,6 @@ [@borchero](https://github.com/search?q=repo%3Amamba-org%2Fquetz-client+involves%3Aborchero+updated%3A2023-03-07..2023-04-06&type=Issues) | [@janjagusch](https://github.com/search?q=repo%3Amamba-org%2Fquetz-client+involves%3Ajanjagusch+updated%3A2023-03-07..2023-04-06&type=Issues) - - ## 0.2.1 ([Full Changelog](https://github.com/mamba-org/quetz-client/compare/v0.2.0...0b113b47da3c1d319dc2724d16f861f49690cbe1)) diff --git a/pyproject.toml b/pyproject.toml index 7d9a0a1..adf6470 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,7 +33,7 @@ check_untyped_defs = true addopts = "--import-mode=importlib" [tool.tbump.version] -current = "0.3.0" +current = "0.4.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 4b9f20f..3d256e9 100644 --- a/src/quetz_client/_version.py +++ b/src/quetz_client/_version.py @@ -1,2 +1,2 @@ -version_info = (0, 3, 0, "", "") +version_info = (0, 4, 0, "", "") __version__ = ".".join(filter(lambda s: len(s) > 0, map(str, version_info)))