Skip to content

Commit c78e7da

Browse files
committed
Update version + CHANGES.md for 5.3.0 release
- Also remove all pyup ignores from requirements file since we're dependabot now
1 parent 38b7192 commit c78e7da

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

CHANGES.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
1-
# x.x.x (2022-MM-DD)
2-
3-
- Replace pyup with dependabot
1+
# 5.3.0 (2022-07-29)
42

53
## New Features
64

5+
- Add delete and verify support in s3 (and maybe swift) storage backend `PR #1142`
76
- Add `--skip-simple-root` option for `bandersnatch sync` command `PR #1145`
8-
- Add delete and verify support in s3 storage backend `PR #1142`
7+
8+
## Other
9+
10+
- Replace pyup with dependabot
11+
- Resulted in lots of depdendencies updating
12+
- Docs typo fixes
913

1014
# 5.2.0 (2022-05-02)
1115

requirements.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ idna==3.3
1010
lxml==4.9.1
1111
multidict==6.0.2
1212
packaging==21.3
13-
# Have to ignore pyparsing as packaging <= 3.0.0
14-
pyparsing==3.0.9 # pyup: ignore
13+
pyparsing==3.0.9
1514
setuptools==63.2.0
1615
six==1.16.0
1716
yarl==1.7.2

requirements_docs.txt

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
# sphinx 3.5.4 wants 0.16 here ... Try update once we get a newer sphinx
2-
# This is being worked on - https://github.com/sphinx-doc/sphinx/issues/9777
3-
docutils==0.16 # pyup: ignore
4-
# Have to ignore pyparsing as packaging <= 3.0.0
5-
pyparsing==3.0.9 # pyup: ignore
1+
docutils==0.16
2+
pyparsing==3.0.9
63
python-dateutil==2.8.2
74
packaging==21.3
85
requests==2.27.1

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ project_urls =
1616
Source Code = https://github.com/pypa/bandersnatch
1717
Change Log = https://github.com/pypa/bandersnatch/blob/master/CHANGES.md
1818
url = https://github.com/pypa/bandersnatch/
19-
version = 5.2.0
19+
version = 5.3.0
2020

2121
[options]
2222
install_requires =

src/bandersnatch/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def version_str(self) -> str:
2020

2121
__version_info__ = _VersionInfo(
2222
major=5,
23-
minor=2,
23+
minor=3,
2424
micro=0,
2525
releaselevel="",
2626
serial=0, # Not currently in use with Bandersnatch versioning

0 commit comments

Comments
 (0)