Skip to content

Commit

Permalink
Update version + CHANGES.md for 5.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
cooperlees committed May 2, 2022
1 parent b70d903 commit 70f0b34
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
15 changes: 10 additions & 5 deletions 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

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Expand Up @@ -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 =
Expand Down
4 changes: 2 additions & 2 deletions src/bandersnatch/__init__.py
Expand Up @@ -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
)
Expand Down

0 comments on commit 70f0b34

Please sign in to comment.