Skip to content

Commit 954e970

Browse files
committed
Bump version to 1.0.4 and update PyPI description
1 parent 2d126d7 commit 954e970

File tree

1 file changed

+21
-3
lines changed

1 file changed

+21
-3
lines changed

setup.py

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="tasknow",
5-
version="1.0.3",
5+
version="1.0.4",
66
description="A super simple terminal to-do app that helps you focus on one task at a time.",
77
long_description="""# TaskNow
88
@@ -14,7 +14,7 @@
1414
- Add, complete, and manage tasks easily from the terminal
1515
- No accounts, no clutter — just your tasks
1616
17-
## Quick start
17+
## Commands
1818
1919
Add a task:
2020
```bash
@@ -36,7 +36,25 @@
3636
tasknow list
3737
```
3838
39-
For more commands and details, see the full documentation.
39+
Remove a task:
40+
```bash
41+
tasknow remove <id>
42+
```
43+
44+
Show completed tasks:
45+
```bash
46+
tasknow completed
47+
```
48+
49+
Un-complete a task:
50+
```bash
51+
tasknow undone <id>
52+
```
53+
54+
Edit a task:
55+
```bash
56+
tasknow edit <id> "New description"
57+
```
4058
4159
---
4260

0 commit comments

Comments
 (0)