Skip to content

Commit 154b78e

Browse files
committed
Move version to 6.7.0 for release + update CHANGES
1 parent 3ac8fb5 commit 154b78e

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

CHANGES.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
1-
# 6.7.0 (Unreleased)
1+
# 6.7.0
22

33
## New Features
44

55
- Declare support for python 3.13 `PR #1848`
6-
- Allow moving to PEP691 simple API for package metadata `PR #2075`
6+
- Add support PEP691 simple API for package metadata (off by default till 7.0) `PR #2075`
77

88
## Bug Fixes
99

1010
- Support reading HTTP proxy URLs from environment variables, and SOCKS proxy URLs from the 'mirror.proxy' config option `PR #1861`
11+
- Remove usage of deprecated datetime.datetime.utcnow()
12+
- Make our custom Exceptions pass B042 (#2074)
1113

1214
## CI
1315

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 = 6.7.0.dev0
19+
version = 6.7.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
@@ -22,7 +22,7 @@ def version_str(self) -> str:
2222
major=6,
2323
minor=7,
2424
micro=0,
25-
releaselevel="dev0",
25+
releaselevel="",
2626
serial=0, # Not currently in use with Bandersnatch versioning
2727
)
2828
__version__ = __version_info__.version_str

0 commit comments

Comments
 (0)