Skip to content

Commit

Permalink
Update version to 6.3.0 for release (#1443)
Browse files Browse the repository at this point in the history
- Fix + delete some uneeded comments
- Add more verbosity to release notes encouraging users to update all the Simple API files
  • Loading branch information
cooperlees authored Apr 29, 2023
1 parent c592481 commit 0a9006d
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
5 changes: 4 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
# Unreleased
# 6.3.0

## Bug Fixes

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

# 6.2.0

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ project_urls =
Source Code = https://github.com/pypa/bandersnatch
Change Log = https://github.com/pypa/bandersnatch/blob/master/CHANGES.md
url = https://github.com/pypa/bandersnatch/
version = 6.2.0
version = 6.3.0

[options]
install_requires =
Expand Down
2 changes: 1 addition & 1 deletion src/bandersnatch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def version_str(self) -> str:

__version_info__ = _VersionInfo(
major=6,
minor=2,
minor=3,
micro=0,
releaselevel="",
serial=0, # Not currently in use with Bandersnatch versioning
Expand Down
1 change: 0 additions & 1 deletion src/bandersnatch/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
logger = logging.getLogger(__name__) # pylint: disable=C0103


# TODO: Workout why argparse.ArgumentParser causes type errors
def _delete_parser(subparsers: argparse._SubParsersAction) -> None:
d = subparsers.add_parser(
"delete",
Expand Down
2 changes: 1 addition & 1 deletion src/bandersnatch/mirror.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ async def synchronize(
# Changelog-based synchronization
await self.determine_packages_to_sync()
else:
# Synchronize specific packages. This method doesn't update the statusfile
# Synchronize specific packages. This method doesn't update the status file
# Pass serial number 0 to bypass the stale serial check in Package class
SERIAL_DONT_CARE = 0
self.packages_to_sync = {
Expand Down

0 comments on commit 0a9006d

Please sign in to comment.