Skip to content

Commit 0a9006d

Browse files
authored
Update version to 6.3.0 for release (#1443)
- Fix + delete some uneeded comments - Add more verbosity to release notes encouraging users to update all the Simple API files
1 parent c592481 commit 0a9006d

5 files changed

Lines changed: 7 additions & 5 deletions

File tree

CHANGES.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1-
# Unreleased
1+
# 6.3.0
22

33
## Bug Fixes
44

55
- Fix digest used for file hashes in PEP 691 simple JSON file output `PR #1442`
66
- The `digest_name` setting from configuration (default value: `sha256`) will now be used for both HTML and JSON files.
7+
- This mirrors pypi.org ("Warehouse") behavior
8+
- Please use `bandersnatch mirror --force-check` to regenerate all your mirror's simple API
9+
- `bandersnatch sync` could also be a way to update important packages faster too
710

811
# 6.2.0
912

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 = 6.2.0
20+
version = 6.3.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=6,
23-
minor=2,
23+
minor=3,
2424
micro=0,
2525
releaselevel="",
2626
serial=0, # Not currently in use with Bandersnatch versioning

src/bandersnatch/main.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
logger = logging.getLogger(__name__) # pylint: disable=C0103
2929

3030

31-
# TODO: Workout why argparse.ArgumentParser causes type errors
3231
def _delete_parser(subparsers: argparse._SubParsersAction) -> None:
3332
d = subparsers.add_parser(
3433
"delete",

src/bandersnatch/mirror.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ async def synchronize(
6464
# Changelog-based synchronization
6565
await self.determine_packages_to_sync()
6666
else:
67-
# Synchronize specific packages. This method doesn't update the statusfile
67+
# Synchronize specific packages. This method doesn't update the status file
6868
# Pass serial number 0 to bypass the stale serial check in Package class
6969
SERIAL_DONT_CARE = 0
7070
self.packages_to_sync = {

0 commit comments

Comments
 (0)