From cc1504387099fb0eb019ae4a179c32847577962e Mon Sep 17 00:00:00 2001 From: Tomer Nosrati Date: Sat, 20 Sep 2025 17:36:44 +0300 Subject: [PATCH 1/2] =?UTF-8?q?Bump=20version:=204.2.1=20=E2=86=92=204.2.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.rst | 2 +- billiard/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 93d7ac7..2b3711c 100644 --- a/README.rst +++ b/README.rst @@ -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/ diff --git a/billiard/__init__.py b/billiard/__init__.py index 6742885..5829320 100644 --- a/billiard/__init__.py +++ b/billiard/__init__.py @@ -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__ = 'python-dev@python.org' From 8eabb722af0693b608cb9aa13fa3634f2ae420a3 Mon Sep 17 00:00:00 2001 From: Tomer Nosrati Date: Sat, 20 Sep 2025 17:39:39 +0300 Subject: [PATCH 2/2] Added Changelog for v4.2.2 --- CHANGES.txt | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index f840bf7..e4f9d35 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -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` @@ -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 --------------------