Skip to content

Commit c2cdc94

Browse files
committed
0.12.1
1 parent 9875492 commit c2cdc94

5 files changed

Lines changed: 19 additions & 3 deletions

File tree

README.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,14 @@ during their execution too. These can be obtained as follows:
262262
Changelog
263263
---------
264264

265+
Release 0.12.1
266+
~~~~~~~~~~~~~~
267+
268+
`31st October, 2025`
269+
270+
* Removed `io` attribute from process executions.
271+
272+
265273
Release 0.12.0
266274
~~~~~~~~~~~~~~
267275

docs/source/changelog.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Changelog
22
---------
33

4+
Release 0.12.1
5+
~~~~~~~~~~~~~~
6+
7+
`31st October, 2025`
8+
9+
* Removed `io` attribute from process executions.
10+
11+
412
Release 0.12.0
513
~~~~~~~~~~~~~~
614

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
author = "Sam Ireland"
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = "0.12.0"
25+
release = "0.12.1"
2626

2727

2828
# -- General configuration ---------------------------------------------------

nextflow/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from .command import run, run_and_poll
44

55
__author__ = "Sam Ireland"
6-
__version__ = "0.12.0"
6+
__version__ = "0.12.1"
77

88
if not which("nextflow"):
99
raise NextflowNotInstalledError(

setup.py

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

66
setup(
77
name="nextflowpy",
8-
version="0.12.0",
8+
version="0.12.1",
99
description="A Python wrapper around Nextflow.",
1010
long_description=long_description,
1111
long_description_content_type="text/x-rst",

0 commit comments

Comments
 (0)