Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 16 additions & 4 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
4.2.2 - 2025-09-20
--------------------
- Add codespell support (config, workflow to detect/not fix) and make it fix few typos
- initial python 3.13 support
- Copy `code.co_qualname` on Python >= 3.11
- Added DeepWiki to README
- Fix the failing pre-commit.ci job
- GitHub Actions: Test on Python 3.14 release candidate 2
- Keep GitHub Actions up to date with GitHub's Dependabot
- Bump the github-actions group with 2 updates
- Prepare for release: v4.2.2

4.2.1 - 2024-09-21
--------------------
- Remove `SIGUSR2` from `TERMSIGS_DEAULT`
Expand Down Expand Up @@ -49,22 +61,22 @@
3.6.4.0 - 2021-04-01
--------------------
- Issue #309: Add Python 3.9 support to spawnv_passfds()
- fix #314
- fix #314

3.6.1 - 2019-08-14
--------------------

- Logging max memory reached at INFO rather than WARNING (#255)

- Pass arguments when wrapping sys.exit (#275)
- Pass arguments when wrapping sys.exit (#275)

- Remove win32/py2k special (#276)
- Remove win32/py2k special (#276)

- Ensure READY messages sent out by exiting worker are consumed prior to it actually existing.

- Pass max_memory_per_child to child worker process (#251)

- Fix compatibility with Python 2.7 on Windows (#283)
- Fix compatibility with Python 2.7 on Windows (#283)

3.6.0.0 - 2019-02-04
--------------------
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ billiard

|build-status-lin| |build-status-win| |license| |wheel| |pyversion| |pyimp|

:Version: 4.2.1
:Version: 4.2.2
:Web: https://billiard.readthedocs.io
:Download: https://pypi.org/project/billiard/
:Source: https://github.com/celery/billiard/
Expand Down
2 changes: 1 addition & 1 deletion billiard/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

from . import context

VERSION = (4, 2, 1)
VERSION = (4, 2, 2)
__version__ = '.'.join(map(str, VERSION[0:4])) + "".join(VERSION[4:])
__author__ = 'R Oudkerk / Python Software Foundation'
__author_email__ = '[email protected]'
Expand Down