diff --git a/CHANGELOG.md b/CHANGELOG.md index e9ce4093..131bf554 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ +## 0.10.3 + +([Full Changelog](https://github.com/mamba-org/quetz/compare/v0.10.2...cbc3914575bf05050c97c241f003d1712f85043e)) + +### Bugs fixed + +- Ignore missing `info/files` file [#671](https://github.com/mamba-org/quetz/pull/671) ([@wolfv](https://github.com/wolfv)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/mamba-org/quetz/graphs/contributors?from=2023-09-28&to=2023-11-22&type=c)) + +[@wolfv](https://github.com/search?q=repo%3Amamba-org%2Fquetz+involves%3Awolfv+updated%3A2023-09-28..2023-11-22&type=Issues) + + + ## 0.10.2 ([Full Changelog](https://github.com/mamba-org/quetz/compare/v0.10.1...3cbd27a2356c9ff07fc80fef5888acb71fc2d7f7)) @@ -16,8 +32,6 @@ [@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)) diff --git a/pyproject.toml b/pyproject.toml index 73ca41e8..942dc174 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ check-imports = ["quetz"] ignore = ["W004"] [tool.tbump.version] -current = "0.10.2" +current = "0.10.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 a8e63e10..34520d66 100644 --- a/quetz/_version.py +++ b/quetz/_version.py @@ -1,2 +1,2 @@ -version_info = (0, 10, 2, "", "") +version_info = (0, 10, 3, "", "") __version__ = '.'.join(filter(lambda s: len(s) > 0, map(str, version_info)))