Skip to content

Commit d1abd63

Browse files
authored
Release 0.0.2. (#6)
1 parent 48323d8 commit d1abd63

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

docs/changes.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@ chronological order. Releases follow `semantic versioning <https://semver.org/>`
66
all 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

1819
0.0.1 - 2020-06-29

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
author = "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 -------------------------------------------------------------

setup.cfg

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[bumpversion]
2-
current_version = 0.0.1
2+
current_version = 0.0.2
33
parse = (?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

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
setup(
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",

src/pytask/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import pluggy
22
from pytask.mark import MARK_GEN as mark # noqa: F401, N811
33

4-
__version__ = "0.0.1"
4+
__version__ = "0.0.2"
55

66

77
hookimpl = pluggy.HookimplMarker("pytask")

0 commit comments

Comments
 (0)