Skip to content

Commit

Permalink
Prepare for release: v4.2.1 (#411)
Browse files Browse the repository at this point in the history
* Added .vscode and .python-version to gitignore

* Added Changelog for v4.2.1

* Bump version: 4.2.0 → 4.2.1
  • Loading branch information
Nusnus authored Sep 21, 2024
1 parent 1884c73 commit 366ac5f
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,5 @@ cover/
htmlcov/
.cache/
.coverage
.vscode/
.python-version
8 changes: 8 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
4.2.1 - 2024-09-21
--------------------
- Remove `SIGUSR2` from `TERMSIGS_DEAULT`
- Add on_ready_counter to Worker.__reduce__.
- Adapt for logging lock internal changes in Python3.13
- blacksmith.sh: Migrate workflows to blacksmith
- Prepare for release: v4.2.1

4.2.0 - 2023-11-06
--------------------
- Update process.py to close during join only if process has completed.
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
========
billiard
========
:version: 4.2.0
:version: 4.2.1

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

Expand Down
3 changes: 2 additions & 1 deletion billiard/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@


import sys

from . import context

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

0 comments on commit 366ac5f

Please sign in to comment.