File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,13 +6,14 @@ chronological order. Releases follow `semantic versioning <https://semver.org/>`
66all releases are available on `Anaconda.org <https://anaconda.org/pytask/pytask >`_.
77
88
9- 0.0.2 - 2020-xx-xx
9+ 0.0.2 - 2020-07-17
1010------------------
1111
1212- :gh: `2 ` provided multiple small changes.
1313- :gh: `3 ` implements a class which holds the execution report of one task.
1414- :gh: `4 ` makes adjustments after moving to ``main `` as the default branch.
1515- :gh: `5 ` adds ``pytask_add_hooks `` to add more hook specifications and register hooks.
16+ - :gh: `6 ` releases v0.0.2.
1617
1718
18190.0.1 - 2020-06-29
Original file line number Diff line number Diff line change 1919author = "Tobias Raabe"
2020
2121# The full version, including alpha/beta/rc tags
22- release = "0.0.1 "
22+ release = "0.0.2 "
2323
2424
2525# -- General configuration -------------------------------------------------------------
Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 0.0.1
2+ current_version = 0.0.2
33parse = (?P<major>\d+)\.(?P<minor>\d+)(\.(?P<patch>\d+))(\-?((dev)?(?P<dev>\d+))?)
4- serialize =
4+ serialize =
55 {major}.{minor}.{patch}dev{dev}
66 {major}.{minor}.{patch}
77
Original file line number Diff line number Diff line change 1414
1515setup (
1616 name = "pytask" ,
17- version = "0.0.1 " ,
17+ version = "0.0.2 " ,
1818 description = DESCRIPTION ,
1919 long_description = DESCRIPTION + "\n \n " + README ,
2020 long_description_content_type = "text/x-rst" ,
Original file line number Diff line number Diff line change 11import pluggy
22from pytask .mark import MARK_GEN as mark # noqa: F401, N811
33
4- __version__ = "0.0.1 "
4+ __version__ = "0.0.2 "
55
66
77hookimpl = pluggy .HookimplMarker ("pytask" )
You can’t perform that action at this time.
0 commit comments