File tree 5 files changed +5
-4
lines changed
5 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ all releases are available on `Anaconda.org <https://anaconda.org/pytask/pytask>
12
12
- :gh: `7 ` makes pytask exit with code 1 if a task failed and the
13
13
``skip_ancestor_failed `` decorator is only applied to descendant tasks not the task
14
14
itself.
15
+ - :gh: `8 ` releases v0.0.3
15
16
16
17
17
18
0.0.2 - 2020-07-17
Original file line number Diff line number Diff line change 19
19
author = "Tobias Raabe"
20
20
21
21
# The full version, including alpha/beta/rc tags
22
- release = "0.0.2 "
22
+ release = "0.0.3 "
23
23
24
24
25
25
# -- General configuration -------------------------------------------------------------
Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 0.0.2
2
+ current_version = 0.0.3
3
3
parse = (?P<major>\d+)\.(?P<minor>\d+)(\.(?P<patch>\d+))(\-?((dev)?(?P<dev>\d+))?)
4
4
serialize =
5
5
{major}.{minor}.{patch}dev{dev}
Original file line number Diff line number Diff line change 14
14
15
15
setup (
16
16
name = "pytask" ,
17
- version = "0.0.2 " ,
17
+ version = "0.0.3 " ,
18
18
description = DESCRIPTION ,
19
19
long_description = DESCRIPTION + "\n \n " + README ,
20
20
long_description_content_type = "text/x-rst" ,
Original file line number Diff line number Diff line change 1
1
import pluggy
2
2
from pytask .mark import MARK_GEN as mark # noqa: F401, N811
3
3
4
- __version__ = "0.0.2 "
4
+ __version__ = "0.0.3 "
5
5
6
6
7
7
hookimpl = pluggy .HookimplMarker ("pytask" )
You can’t perform that action at this time.
0 commit comments