0.1.1
Automatically generated by python-semantic-release
This commit is contained in:
parent
c7c40e1f7d
commit
e5654a00cb
2 changed files with 9 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "task-status"
|
name = "task-status"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
description = "Utility to get status data built from taskwarrior"
|
description = "Utility to get status data built from taskwarrior"
|
||||||
authors = ["Alex Kelly <alex.kelly@franklin.edu>"]
|
authors = ["Alex Kelly <alex.kelly@franklin.edu>"]
|
||||||
|
|
||||||
|
@ -12,6 +12,7 @@ python-dateutil = "^2.8.2"
|
||||||
[tool.poetry.dev-dependencies]
|
[tool.poetry.dev-dependencies]
|
||||||
pytest = "^6.2.4"
|
pytest = "^6.2.4"
|
||||||
flake8 = "^3.9.2"
|
flake8 = "^3.9.2"
|
||||||
|
python-semantic-release = "^7.19.1"
|
||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["poetry-core>=1.0.0"]
|
requires = ["poetry-core>=1.0.0"]
|
||||||
|
@ -19,3 +20,9 @@ build-backend = "poetry.core.masonry.api"
|
||||||
|
|
||||||
[tool.poetry.scripts]
|
[tool.poetry.scripts]
|
||||||
task-status = 'task_status.task_status:main'
|
task-status = 'task_status.task_status:main'
|
||||||
|
|
||||||
|
[tool.semantic_release]
|
||||||
|
version_variable = [
|
||||||
|
"task_status/task_status.py:__version__",
|
||||||
|
"pyproject.toml:version"
|
||||||
|
]
|
||||||
|
|
|
@ -5,7 +5,7 @@ from datetime import date
|
||||||
from dateutil.relativedelta import relativedelta, MO
|
from dateutil.relativedelta import relativedelta, MO
|
||||||
import click
|
import click
|
||||||
|
|
||||||
__version__ = "0.1.0"
|
__version__ = "0.1.1"
|
||||||
|
|
||||||
|
|
||||||
@click.command()
|
@click.command()
|
||||||
|
|
Loading…
Add table
Reference in a new issue