Skip to content

Commit ed442e8

Browse files
authored
Release v0.0.11. (#54)
1 parent d068ab1 commit ed442e8

File tree

7 files changed

+7
-26
lines changed

7 files changed

+7
-26
lines changed

.github/workflows/continuous-integration-workflow.yml

-20
Original file line numberDiff line numberDiff line change
@@ -61,26 +61,6 @@ jobs:
6161
run: bash <(curl -s https://codecov.io/bash) -F end_to_end -c
6262

6363

64-
pre-commit:
65-
66-
name: Run pre-commit.
67-
runs-on: ubuntu-latest
68-
69-
steps:
70-
- uses: actions/checkout@v2
71-
72-
- name: Set up Python 3.8
73-
uses: actions/setup-python@v1
74-
with:
75-
python-version: 3.8
76-
77-
- name: Install dependencies
78-
run: pip install tox
79-
80-
- name: Run pre-commit
81-
run: tox -e pre-commit
82-
83-
8464
docs:
8565

8666
name: Run documentation.

docs/changes.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ 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.11 - 2020-xx-xx
9+
0.0.11 - 2020-12-27
1010
-------------------
1111

1212
- :gh:`45` adds the option to stop execution after a number of tasks has failed. Closes
@@ -19,6 +19,7 @@ all releases are available on `Anaconda.org <https://anaconda.org/pytask/pytask>
1919
- :gh:`52` allows to prioritize tasks with ``pytask.mark.try_last`` and
2020
``pytask.mark.try_first``.
2121
- :gh:`53` changes the theme of the documentation to furo.
22+
- :gh:`54` releases v0.0.11.
2223

2324

2425
0.0.10 - 2020-11-18

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.10"
24+
release = "0.0.11"
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.10
2+
current_version = 0.0.11
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.10",
18+
version="0.0.11",
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.10"
1+
__version__ = "0.0.11"

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.10"
7+
__version__ = "0.0.11"

0 commit comments

Comments
 (0)