Skip to content

Commit

Permalink
Move version to 6.6.0 for release + update CHANGES
Browse files Browse the repository at this point in the history
  • Loading branch information
cooperlees committed Dec 24, 2024
1 parent ae40be1 commit 2b633b9
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 12 deletions.
23 changes: 13 additions & 10 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# Unreleased - 6.6.0
# 6.6.0

## New Features

- Add arbitrary configuration option for S3 Storage Backend Boto3 calls (PR #1697)
- Add pytest marker to allow skipping of S3 tests (PR #1766)
- Added HTTPS support in Docker Compose + Enabled bind-mount volume for Nginx config + add documentation in README.md (PR #1653)
- Initial support for python 3.12 (PR #1728)
- Move Docker images to 3.12 (PR #1733)
- Removing swift builds due to lack or assistance - Happy to bring back if you're willing to help maintian
- Move black, mypy + pyupgrade to >= 3.11 codebase (PR #1734)
- Allow non-HTTPS-enabled mirrors (PR #1765)
- Correct example config (PR #1807)
- Add arbitrary configuration option for S3 Storage Backend Boto3 calls `PR #1697`
- Add pytest marker to allow skipping of S3 tests `PR #1766`
- Added HTTPS support in Docker Compose + Enabled bind-mount volume for Nginx config + add documentation in README.md `PR #1653`
- Initial support for python 3.12 `PR #1728`
- Move Docker images to 3.12 `PR #1733`
- Removing swift builds due to lack or assistance - Happy to bring back if you're willing to help maintain
- Move black, mypy + pyupgrade to >= 3.11 codebase `PR #1734`
- Allow non-HTTPS-enabled mirrors `PR #1765`
- Correct example config `PR #1807`

## Documentation

Expand All @@ -19,6 +19,9 @@

## Bug Fixes

- Fix event loop usage and test setup to move to latest test deps `PR #1829`
- Fix filtering for verify to fix deletion `PR #1690`
- Drop `types-pkg_resources` `PR #1793`
- Fix config file value interpolation for the `diff-file` option `PR #1715`
- Fix diff-file being created when the option wasn't set `PR #1716`
- Provide default values for most config options in the `[mirror]` section `PR #1740`
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,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.6.0dev0
version = 6.6.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 @@ -22,7 +22,7 @@ def version_str(self) -> str:
major=6,
minor=6,
micro=0,
releaselevel="dev0",
releaselevel="",
serial=0, # Not currently in use with Bandersnatch versioning
)
__version__ = __version_info__.version_str
1 change: 1 addition & 0 deletions src/bandersnatch/verify.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ async def verify(

# apply releases filter plugins like class Package
pkg_c = Package(pkg["info"]["name"])
# TODO: Maybe make a load_metadata method in Package
pkg_c._metadata = pkg
pkg = pkg_c
pkg.filter_all_releases_files(LoadedFilters().filter_release_file_plugins())
Expand Down

0 comments on commit 2b633b9

Please sign in to comment.