Skip to content

Commit

Permalink
Update version + CHANGES.md for 5.3.0 release
Browse files Browse the repository at this point in the history
- Also remove all pyup ignores from requirements file since we're dependabot now
  • Loading branch information
cooperlees committed Jul 29, 2022
1 parent 38b7192 commit c78e7da
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
12 changes: 8 additions & 4 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
7 changes: 2 additions & 5 deletions requirements_docs.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
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.2.0
version = 5.3.0

[options]
install_requires =
Expand Down
2 changes: 1 addition & 1 deletion src/bandersnatch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c78e7da

Please sign in to comment.