Skip to content

Commit 0642d2e

Browse files
authored
Prepare for release: v4.2.2 (#432)
* Bump version: 4.2.1 → 4.2.2 * Added Changelog for v4.2.2
1 parent a954b74 commit 0642d2e

File tree

3 files changed

+18
-6
lines changed

3 files changed

+18
-6
lines changed

CHANGES.txt

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
4.2.2 - 2025-09-20
2+
--------------------
3+
- Add codespell support (config, workflow to detect/not fix) and make it fix few typos
4+
- initial python 3.13 support
5+
- Copy `code.co_qualname` on Python >= 3.11
6+
- Added DeepWiki to README
7+
- Fix the failing pre-commit.ci job
8+
- GitHub Actions: Test on Python 3.14 release candidate 2
9+
- Keep GitHub Actions up to date with GitHub's Dependabot
10+
- Bump the github-actions group with 2 updates
11+
- Prepare for release: v4.2.2
12+
113
4.2.1 - 2024-09-21
214
--------------------
315
- Remove `SIGUSR2` from `TERMSIGS_DEAULT`
@@ -49,22 +61,22 @@
4961
3.6.4.0 - 2021-04-01
5062
--------------------
5163
- Issue #309: Add Python 3.9 support to spawnv_passfds()
52-
- fix #314
64+
- fix #314
5365

5466
3.6.1 - 2019-08-14
5567
--------------------
5668

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

59-
- Pass arguments when wrapping sys.exit (#275)
71+
- Pass arguments when wrapping sys.exit (#275)
6072

61-
- Remove win32/py2k special (#276)
73+
- Remove win32/py2k special (#276)
6274

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

6577
- Pass max_memory_per_child to child worker process (#251)
6678

67-
- Fix compatibility with Python 2.7 on Windows (#283)
79+
- Fix compatibility with Python 2.7 on Windows (#283)
6880

6981
3.6.0.0 - 2019-02-04
7082
--------------------

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ billiard
44

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

7-
:Version: 4.2.1
7+
:Version: 4.2.2
88
:Web: https://billiard.readthedocs.io
99
:Download: https://pypi.org/project/billiard/
1010
:Source: https://github.com/celery/billiard/

billiard/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
from . import context
2424

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

0 commit comments

Comments
 (0)