Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ include:

- **Automatic discovery of tasks.**

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

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

Expand Down
4 changes: 3 additions & 1 deletion docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@ chronological order. Releases follow `semantic versioning <https://semver.org/>`
all releases are available on `Anaconda.org <https://anaconda.org/pytask/pytask>`_.


0.0.7 - 2020-xx-xx
0.0.7 - 2020-10-03
------------------

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


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


0.0.5 - 2020-08-12
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
author = "Tobias Raabe"

# The full version, including alpha/beta/rc tags
release = "0.0.6"
release = "0.0.7"


# -- General configuration -------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.6
current_version = 0.0.7
parse = (?P<major>\d+)\.(?P<minor>\d+)(\.(?P<patch>\d+))(\-?((dev)?(?P<dev>\d+))?)
serialize =
{major}.{minor}.{patch}dev{dev}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

setup(
name="pytask",
version="0.0.6",
version="0.0.7",
description=DESCRIPTION,
long_description=DESCRIPTION + "\n\n" + README,
long_description_content_type="text/x-rst",
Expand Down
2 changes: 1 addition & 1 deletion src/_pytask/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.6"
__version__ = "0.0.7"
2 changes: 1 addition & 1 deletion src/pytask/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
from _pytask.mark import MARK_GEN as mark # noqa: N811

__all__ = ["cli", "hookimpl", "main", "mark"]
__version__ = "0.0.6"
__version__ = "0.0.7"