@@ -17,7 +17,7 @@ curl -sSL https://api.github.com/repos/ci-sourcerer/common-python-tasks/contents
1717To install a specific release, set the environment variable ` COMMON_PYTHON_TASKS_VERSION ` .
1818
1919``` shell
20- COMMON_PYTHON_TASKS_VERSION=0.1 .0 \
20+ COMMON_PYTHON_TASKS_VERSION=0.2 .0 \
2121 sh -c " $( curl -sSL https://api.github.com/repos/ci-sourcerer/common-python-tasks/contents/scripts/add-common-python-tasks.sh | jq -r ' .content' | base64 -d) "
2222```
2323
@@ -38,9 +38,9 @@ There's no real reason to run the automated script; I just like automating every
3838 ``` toml
3939 [project ]
4040 name = " my-awesome-project"
41- version = " 0.1 .0"
41+ version = " 0.2 .0"
4242 dependencies = [
43- " common-python-tasks==0.1 .0" , # Always pin to a specific version
43+ " common-python-tasks==0.2 .0" , # Always pin to a specific version
4444 ]
4545
4646 [tool .poe ]
@@ -254,8 +254,8 @@ By default, `tasks()` exposes the common task set. You can still include or excl
254254``` toml
255255[project ]
256256name = " simple-cli-tool"
257- version = " 0.1 .0"
258- dependencies = [" common-python-tasks==0.1 .0" ]
257+ version = " 0.2 .0"
258+ dependencies = [" common-python-tasks==0.2 .0" ]
259259
260260[tool .poe ]
261261include_script = " common_python_tasks:tasks()"
@@ -268,8 +268,8 @@ Available tasks: common defaults such as `format`, `lint`, `test`, and `build`.
268268``` toml
269269[project ]
270270name = " containerized-app"
271- version = " 0.1 .0"
272- dependencies = [" common-python-tasks==0.1 .0" ]
271+ version = " 0.2 .0"
272+ dependencies = [" common-python-tasks==0.2 .0" ]
273273
274274[tool .poe ]
275275include_script = " common_python_tasks:tasks(include_tags=['common', 'containers'])"
@@ -286,7 +286,7 @@ Available tasks: All tasks including `build-image` and `push-image`.
286286``` toml
287287[project ]
288288name = " custom-test-setup"
289- dependencies = [" common-python-tasks==0.1 .0" ]
289+ dependencies = [" common-python-tasks==0.2 .0" ]
290290dynamic = [" version" ]
291291
292292[tool .poe ]
0 commit comments