Skip to content

Commit 2927bdc

Browse files
authored
Release v0.0.5. (#10)
1 parent f91b4e1 commit 2927bdc

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

Diff for: CHANGES.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,13 @@ all releases are available on `Anaconda.org
77
<https://anaconda.org/pytask/pytask-parallel>`_.
88

99

10-
0.0.5 - 2020-xx-xx
10+
0.0.5 - 2020-12-28
1111
------------------
1212

1313
- :gh:`5` fixes the CI and other smaller issues.
1414
- :gh:`8` aligns pytask-parallel with task priorities in pytask v0.0.11.
1515
- :gh:`9` enables --max-failures. Closes :gh:`7`.
16+
- :gh:`10` releases v0.0.5.
1617

1718

1819
0.0.4 - 2020-10-30

Diff for: setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.0.4
2+
current_version = 0.0.5
33
parse = (?P<major>\d+)\.(?P<minor>\d+)(\.(?P<patch>\d+))(\-?((dev)?(?P<dev>\d+))?)
44
serialize =
55
{major}.{minor}.{patch}dev{dev}

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
setup(
55
name="pytask-parallel",
6-
version="0.0.4",
6+
version="0.0.5",
77
packages=find_packages(where="src"),
88
package_dir={"": "src"},
99
entry_points={"pytask": ["pytask_parallel = pytask_parallel.plugin"]},

Diff for: src/pytask_parallel/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""The entry-point for pytask-parallel."""
2-
__version__ = "0.0.4"
2+
__version__ = "0.0.5"

0 commit comments

Comments
 (0)