Skip to content

Commit 547e906

Browse files
committed
chore: update changelog
1 parent 6d33b70 commit 547e906

4 files changed

Lines changed: 10 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.2.1 (2022-07-12)
4+
5+
* Fix config command `--list` option.
6+
37
## 0.2.0 (2022-07-11)
48

59
* Add alias options in config.

hyperfocus/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
__app_name__ = "hyperfocus"
2-
__version__ = "0.2.0"
2+
__version__ = "0.2.1"

hyperfocus/commands/cmd_status.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ def __init__(self, session: Session) -> None:
1616
self._task_command = TaskCommand(session)
1717

1818
def execute(self) -> None:
19-
self._task_command.show_tasks(newline=True)
19+
self._task_command.show_tasks()

pyproject.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "hyperfocus"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
description = "Minimalist task manager."
55
authors = ["u8slvn <u8slvn@gmail.com>"]
66
license = "MIT"
@@ -21,6 +21,9 @@ include = [
2121
"README.md",
2222
]
2323

24+
[tool.poetry.urls]
25+
"Changelog" = "https://github.com/u8slvn/hyperfocus/blob/main/CHANGELOG.md"
26+
2427
[tool.poetry.dependencies]
2528
python = "^3.8"
2629
peewee = "^3.14.8"
@@ -38,7 +41,6 @@ types-tabulate = "^0.8.5"
3841
pre-commit = "^2.19.0"
3942
coverage = {extras = ["toml"], version = "^6.4.1"}
4043

41-
4244
[tool.poetry.scripts]
4345
hyf = "hyperfocus.cli:hyf"
4446

0 commit comments

Comments
 (0)