Skip to content

Commit 366ac5f

Browse files
authored
Prepare for release: v4.2.1 (#411)
* Added .vscode and .python-version to gitignore * Added Changelog for v4.2.1 * Bump version: 4.2.0 → 4.2.1
1 parent 1884c73 commit 366ac5f

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,5 @@ cover/
2525
htmlcov/
2626
.cache/
2727
.coverage
28+
.vscode/
29+
.python-version

CHANGES.txt

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
4.2.1 - 2024-09-21
2+
--------------------
3+
- Remove `SIGUSR2` from `TERMSIGS_DEAULT`
4+
- Add on_ready_counter to Worker.__reduce__.
5+
- Adapt for logging lock internal changes in Python3.13
6+
- blacksmith.sh: Migrate workflows to blacksmith
7+
- Prepare for release: v4.2.1
8+
19
4.2.0 - 2023-11-06
210
--------------------
311
- Update process.py to close during join only if process has completed.

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
========
22
billiard
33
========
4-
:version: 4.2.0
4+
:version: 4.2.1
55

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

billiard/__init__.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,10 @@
1919

2020

2121
import sys
22+
2223
from . import context
2324

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

0 commit comments

Comments
 (0)