Skip to content

Commit 83df77d

Browse files
committed
Update docs for 0.9
1 parent e8b9974 commit 83df77d

File tree

3 files changed

+29
-5
lines changed

3 files changed

+29
-5
lines changed

README.rst

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ nextflow.py
1212
.. |pypi| image:: https://img.shields.io/pypi/pyversions/nextflowpy.svg
1313
:target: https://pypi.org/project/nextflowpy/
1414

15-
.. |nextfow| image:: https://img.shields.io/badge/Nextflow-24.10%20|23.10%20|22.10%20-orange
15+
.. |nextfow| image:: https://img.shields.io/badge/Nextflow-22.10%20|23.10%20|24.10%20-orange
1616
:target: https://www.nextflow.io/
1717

1818
.. |license| image:: https://img.shields.io/pypi/l/nextflowpy.svg?color=blue
@@ -203,9 +203,11 @@ following properties:
203203

204204
* ``stderr`` - the stderr of the process execution.
205205

206-
* ``started`` - When the process execution ran (as a Python datetime).
206+
* ``submitted`` - When the process execution was submitted (as a Python datetime).
207207

208-
* ``started`` - When the process execution completed (as a Python datetime).
208+
* ``started`` - When the process execution started (as a Python datetime).
209+
210+
* ``finished`` - When the process execution completed (as a Python datetime).
209211

210212
* ``duration`` - how long the process execution took in seconds.
211213

@@ -234,6 +236,16 @@ during their execution too. These can be obtained as follows:
234236
Changelog
235237
---------
236238

239+
Release 0.9.0
240+
~~~~~~~~~~~~~
241+
242+
`8th February, 2025`
243+
244+
* Process submission time now distinguished from start time.
245+
* Added support for staging inputs by copy.
246+
* Added utilities for predicting all process names for a pipeline.
247+
248+
237249
Release 0.8.3
238250
~~~~~~~~~~~~~
239251

docs/source/changelog.rst

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

4+
Release 0.9.0
5+
~~~~~~~~~~~~~
6+
7+
`8th February, 2025`
8+
9+
* Process submission time now distinguished from start time.
10+
* Added support for staging inputs by copy.
11+
* Added utilities for predicting all process names for a pipeline.
12+
13+
414
Release 0.8.3
515
~~~~~~~~~~~~~
616

docs/source/overview.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,11 @@ following properties:
125125

126126
* ``stderr`` - the stderr of the process execution.
127127

128-
* ``started`` - When the process execution ran (as a Python datetime).
128+
* ``submitted`` - When the process execution was submitted (as a Python datetime).
129129

130-
* ``started`` - When the process execution completed (as a Python datetime).
130+
* ``started`` - When the process execution started (as a Python datetime).
131+
132+
* ``finished`` - When the process execution completed (as a Python datetime).
131133

132134
* ``duration`` - how long the process execution took in seconds.
133135

0 commit comments

Comments
 (0)