diff --git a/CHANGES.md b/CHANGES.md index 72e74cafc..dc3525ca1 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,11 +1,15 @@ -# x.x.x (2022-MM-DD) - -- Replace pyup with dependabot +# 5.3.0 (2022-07-29) ## New Features +- Add delete and verify support in s3 (and maybe swift) storage backend `PR #1142` - Add `--skip-simple-root` option for `bandersnatch sync` command `PR #1145` -- Add delete and verify support in s3 storage backend `PR #1142` + +## Other + +- Replace pyup with dependabot + - Resulted in lots of depdendencies updating +- Docs typo fixes # 5.2.0 (2022-05-02) diff --git a/requirements.txt b/requirements.txt index d4c92347d..3a27739c9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -10,8 +10,7 @@ idna==3.3 lxml==4.9.1 multidict==6.0.2 packaging==21.3 -# Have to ignore pyparsing as packaging <= 3.0.0 -pyparsing==3.0.9 # pyup: ignore +pyparsing==3.0.9 setuptools==63.2.0 six==1.16.0 yarl==1.7.2 diff --git a/requirements_docs.txt b/requirements_docs.txt index a0466d843..615f9b93c 100644 --- a/requirements_docs.txt +++ b/requirements_docs.txt @@ -1,8 +1,5 @@ -# sphinx 3.5.4 wants 0.16 here ... Try update once we get a newer sphinx -# This is being worked on - https://github.com/sphinx-doc/sphinx/issues/9777 -docutils==0.16 # pyup: ignore -# Have to ignore pyparsing as packaging <= 3.0.0 -pyparsing==3.0.9 # pyup: ignore +docutils==0.16 +pyparsing==3.0.9 python-dateutil==2.8.2 packaging==21.3 requests==2.27.1 diff --git a/setup.cfg b/setup.cfg index f791568cf..e45b0b50d 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.2.0 +version = 5.3.0 [options] install_requires = diff --git a/src/bandersnatch/__init__.py b/src/bandersnatch/__init__.py index 397957685..8eca49fe7 100644 --- a/src/bandersnatch/__init__.py +++ b/src/bandersnatch/__init__.py @@ -20,7 +20,7 @@ def version_str(self) -> str: __version_info__ = _VersionInfo( major=5, - minor=2, + minor=3, micro=0, releaselevel="", serial=0, # Not currently in use with Bandersnatch versioning