Skip to content

Commit 320ba06

Browse files
authored
Release v0.0.7. (#29)
1 parent 4aea522 commit 320ba06

File tree

7 files changed

+10
-8
lines changed

7 files changed

+10
-8
lines changed

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ include:
3131

3232
- **Automatic discovery of tasks.**
3333

34-
- **Lazy evaluation.** If a task or its dependencies have not changed, do not
35-
execute it.
34+
- **Lazy evaluation.** If a task, its dependencies, and its products have not changed,
35+
do not execute it.
3636

3737
- **Debug mode.** Jump into the debugger if a task fails and get quick feedback.
3838

docs/changes.rst

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,15 @@ 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.7 - 2020-xx-xx
9+
0.0.7 - 2020-10-03
1010
------------------
1111

1212
- :gh:`25` allows to customize the names of the task files.
1313
- :gh:`26` makes commands return the correct exit codes.
1414
- :gh:`27` implements the ``pytask_collect_task_teardown`` hook specification to perform
1515
checks after a task is collected.
1616
- :gh:`28` implements the ``@pytask.mark.persist`` decorator.
17+
- :gh:`29` releases 0.0.7.
1718

1819

1920
0.0.6 - 2020-09-12
@@ -31,6 +32,7 @@ all releases are available on `Anaconda.org <https://anaconda.org/pytask/pytask>
3132
``ids`` argument, and adds tutorials.
3233
- :gh:`23` allows to specify paths via the configuration file, documents the cli and
3334
configuration options.
35+
- :gh:`24` releases 0.0.6.
3436

3537

3638
0.0.5 - 2020-08-12

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
author = "Tobias Raabe"
2222

2323
# The full version, including alpha/beta/rc tags
24-
release = "0.0.6"
24+
release = "0.0.7"
2525

2626

2727
# -- General configuration -------------------------------------------------------------

setup.cfg

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

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
setup(
1717
name="pytask",
18-
version="0.0.6",
18+
version="0.0.7",
1919
description=DESCRIPTION,
2020
long_description=DESCRIPTION + "\n\n" + README,
2121
long_description_content_type="text/x-rst",

src/_pytask/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.0.6"
1+
__version__ = "0.0.7"

src/pytask/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
from _pytask.mark import MARK_GEN as mark # noqa: N811
55

66
__all__ = ["cli", "hookimpl", "main", "mark"]
7-
__version__ = "0.0.6"
7+
__version__ = "0.0.7"

0 commit comments

Comments
 (0)