Skip to content

Commit 4db1b71

Browse files
authored
Update CHANGES.md for 4.4.0 release (#786)
1 parent fac92b5 commit 4db1b71

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

CHANGES.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
# 4.4.0 (2020-12-31)
2+
3+
## New Features
4+
5+
- Build a swift and non swift docker image - `PR #754`
6+
- Split Docker Build to accept build args to optionally include swift support - `PR #741` - Thanks **nlaurance-pyie**
7+
- Slimmer docker image - `PR #738` - Thanks **nlaurance-pyie**
8+
- Renamed black/white to block/allow lists - `PR #737` - Thanks **nlaurance-pyie**
9+
- packages allowlist can be defined from requirements like files - `PR #739` - Thanks **nlaurance-pyie**
10+
- Simplify logging around filters - `PR #678` - Thanks **@dalley**
11+
12+
## Bug Fixes
13+
14+
- Handling of timeouts that can occur in verify. - `PR #785` - Thanks **electricworry**
15+
- Added retry logic on timeouts when fetching metadata - `PR #773` - Thanks **gerrod3**
16+
- Fix links, improve docs CI, and improve external object linking - `PR #776` - Thanks **ichard26**
17+
- Handle 404 status for json verify - `PR #763` - Thanks **electricworry**
18+
- Clean up isort config after upgrade to 5+ - `PR #767` - Thanks **ichard26**
19+
- Remove duplicate max() target serial finding code + update typing - `PR #745`
20+
- swift.py: use BaseFileLock's lock_file property - `PR #699` - Thanks **hauntsaninja**
21+
- Move to latest isort + mypy fixes - `PR #706`
22+
- Update change log url in project metadata - `PR #673` - Thanks **@abn**
23+
124
# 4.3.0 (2020-8-25)
225

326
## New Features

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ project_urls =
1717
Source Code = https://github.com/pypa/bandersnatch
1818
Change Log = https://github.com/pypa/bandersnatch/blob/master/CHANGES.md
1919
url = https://github.com/pypa/bandersnatch/
20-
version = 4.3.0
20+
version = 4.4.0
2121

2222
[options]
2323
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=4,
23-
minor=3,
23+
minor=4,
2424
micro=0,
2525
releaselevel="",
2626
serial=0, # Not currently in use with Bandersnatch versioning

0 commit comments

Comments
 (0)