File tree 5 files changed +7
-6
lines changed
5 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -6,13 +6,14 @@ chronological order. Releases follow `semantic versioning <https://semver.org/>`
6
6
all releases are available on `Anaconda.org <https://anaconda.org/pytask/pytask >`_.
7
7
8
8
9
- 0.0.2 - 2020-xx-xx
9
+ 0.0.2 - 2020-07-17
10
10
------------------
11
11
12
12
- :gh: `2 ` provided multiple small changes.
13
13
- :gh: `3 ` implements a class which holds the execution report of one task.
14
14
- :gh: `4 ` makes adjustments after moving to ``main `` as the default branch.
15
15
- :gh: `5 ` adds ``pytask_add_hooks `` to add more hook specifications and register hooks.
16
+ - :gh: `6 ` releases v0.0.2.
16
17
17
18
18
19
0.0.1 - 2020-06-29
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.1 "
22
+ release = "0.0.2 "
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.1
2
+ current_version = 0.0.2
3
3
parse = (?P<major>\d+)\.(?P<minor>\d+)(\.(?P<patch>\d+))(\-?((dev)?(?P<dev>\d+))?)
4
- serialize =
4
+ serialize =
5
5
{major}.{minor}.{patch}dev{dev}
6
6
{major}.{minor}.{patch}
7
7
Original file line number Diff line number Diff line change 14
14
15
15
setup (
16
16
name = "pytask" ,
17
- version = "0.0.1 " ,
17
+ version = "0.0.2 " ,
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.1 "
4
+ __version__ = "0.0.2 "
5
5
6
6
7
7
hookimpl = pluggy .HookimplMarker ("pytask" )
You can’t perform that action at this time.
0 commit comments