Skip to content

Commit 88e336e

Browse files
committed
Update README.md + CHANGES.md for 4.0.2 release
1 parent 4af847f commit 88e336e

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 4.0.2 (2020-4-26)
2+
3+
- Raise for error HTML response on all aiohttp session requests - `PR #494 / #496` - Thanks **@windtail**
4+
- Pass str to shutil.move due to Python bug - `PR #497` - Thanks **@SanketDG**
5+
- Some more type hints added to `verify.py` - `PR #488` - Thanks **@SanketDG**
6+
- Ignore `atime` on stat in test `test_package_sync_does_not_touch_existing_local_file` comparision
7+
as it casues stat compare fail on a slower run - `PR #487` - Thanks **@SanketDG**
8+
19
## 4.0.1 (2020-4-5)
210

311
- Pass correct aiohttp timeout objects - `PR #478`

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/CHANGES.md
1818
url = https://github.com/pypa/bandersnatch/
19-
version = 4.0.1
19+
version = 4.0.2
2020

2121
[options]
2222
include_package_data = True

src/bandersnatch/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def version_str(self) -> str:
1818
__version_info__ = _VersionInfo(
1919
major=4,
2020
minor=0,
21-
micro=1,
21+
micro=2,
2222
releaselevel="",
2323
serial=0, # Not currently in use with Bandersnatch versioning
2424
)

0 commit comments

Comments
 (0)