diff --git a/CHANGES.md b/CHANGES.md index c564d6f8f..27a083eac 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,4 @@ -# Unreleased +# 6.2.0 ## New Features @@ -9,7 +9,13 @@ ## Bug Fixes -- Fixed import of packages from requirement files with UTF-16 encoding `PR #1387` +- Fixed read of requirement files with non UTF-8 encoding - compatible with pip `PR #1387` +- Type checking fixed to pass mypy > 1.0.0 +- Don't attempt docker on forks `PR #1336` + +## Notice + +- This will be the last python 3.8 and 3.9 tested version. Going to plan to be >= 3.10 # 6.1.0 diff --git a/setup.cfg b/setup.cfg index 679613a9c..748b594f4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -17,7 +17,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 = 6.1.0 +version = 6.2.0 [options] install_requires = diff --git a/src/bandersnatch/__init__.py b/src/bandersnatch/__init__.py index 33b358a0f..1be83cb30 100644 --- a/src/bandersnatch/__init__.py +++ b/src/bandersnatch/__init__.py @@ -20,7 +20,7 @@ def version_str(self) -> str: __version_info__ = _VersionInfo( major=6, - minor=1, + minor=2, micro=0, releaselevel="", serial=0, # Not currently in use with Bandersnatch versioning