File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
1919url = https://github.com/pypa/bandersnatch/
20- version = 6.2 .0
20+ version = 6.3 .0
2121
2222[options]
2323install_requires =
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 2828logger = logging .getLogger (__name__ ) # pylint: disable=C0103
2929
3030
31- # TODO: Workout why argparse.ArgumentParser causes type errors
3231def _delete_parser (subparsers : argparse ._SubParsersAction ) -> None :
3332 d = subparsers .add_parser (
3433 "delete" ,
Original file line number Diff line number Diff 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 = {
You can’t perform that action at this time.
0 commit comments