diff --git a/README.rst b/README.rst index 741e38d7..678140b9 100644 --- a/README.rst +++ b/README.rst @@ -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. diff --git a/docs/changes.rst b/docs/changes.rst index 1eb77f61..524dbe19 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -6,7 +6,7 @@ chronological order. Releases follow `semantic versioning ` all releases are available on `Anaconda.org `_. -0.0.7 - 2020-xx-xx +0.0.7 - 2020-10-03 ------------------ - :gh:`25` allows to customize the names of the task files. @@ -14,6 +14,7 @@ all releases are available on `Anaconda.org - :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 @@ -31,6 +32,7 @@ all releases are available on `Anaconda.org ``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 diff --git a/docs/conf.py b/docs/conf.py index 41d2a33e..5afe91b3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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 ------------------------------------------------------------- diff --git a/setup.cfg b/setup.cfg index 23bae9d0..1d0db702 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.6 +current_version = 0.0.7 parse = (?P\d+)\.(?P\d+)(\.(?P\d+))(\-?((dev)?(?P\d+))?) serialize = {major}.{minor}.{patch}dev{dev} diff --git a/setup.py b/setup.py index 888a8e4f..0bce7cb8 100644 --- a/setup.py +++ b/setup.py @@ -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", diff --git a/src/_pytask/__init__.py b/src/_pytask/__init__.py index 034f46c3..6526deb4 100644 --- a/src/_pytask/__init__.py +++ b/src/_pytask/__init__.py @@ -1 +1 @@ -__version__ = "0.0.6" +__version__ = "0.0.7" diff --git a/src/pytask/__init__.py b/src/pytask/__init__.py index 66c1e194..39ef0f1e 100644 --- a/src/pytask/__init__.py +++ b/src/pytask/__init__.py @@ -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"