diff --git a/CHANGES.md b/CHANGES.md index cf16ce3fd..8bb62dd5f 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,18 +1,23 @@ -# Unreleased +# 5.2.0 (2022-05-02) -## Other +## New Features - Add PEP 629 header to Simple API HTML `PR #1122` +- Added support to exclude specific Python minor versions `PR #1110` - Thanks **davidkim83** - Add S3 Docker Image building `PR #1092` + +## Other + +- Got Swift usage documentation - Move Docker containers to Python 3.10 `PR #1092` -- Python 3.10 is now supported `PR #1073` -- Thanks **isidentical** -- Added support to exclude specific Python minor versions `PR #1110` +- Python 3.10 is now supported `PR #1073` - Thanks **isidentical** +- Move minio docker image running to official image # 5.1.1 (2021-12-14) ## Bug fixes -- Fix debug output for package changes at end of mirror operation `PR #1066` -- Thanks **forky2** +- Fix debug output for package changes at end of mirror operation `PR #1066` - Thanks **forky2** ## Other diff --git a/setup.cfg b/setup.cfg index dd5ad8dca..f791568cf 100644 --- a/setup.cfg +++ b/setup.cfg @@ -16,7 +16,7 @@ project_urls = Source Code = https://github.com/pypa/bandersnatch Change Log = https://github.com/pypa/bandersnatch/blob/master/CHANGES.md url = https://github.com/pypa/bandersnatch/ -version = 5.1.1 +version = 5.2.0 [options] install_requires = diff --git a/src/bandersnatch/__init__.py b/src/bandersnatch/__init__.py index b57e72f7f..397957685 100644 --- a/src/bandersnatch/__init__.py +++ b/src/bandersnatch/__init__.py @@ -20,8 +20,8 @@ def version_str(self) -> str: __version_info__ = _VersionInfo( major=5, - minor=1, - micro=1, + minor=2, + micro=0, releaselevel="", serial=0, # Not currently in use with Bandersnatch versioning )