summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLoic Guegan <loic.guegan@mailbox.org>2024-04-19 11:38:50 +0200
committerLoic Guegan <loic.guegan@mailbox.org>2024-04-19 11:38:50 +0200
commitab5c2a08c793decc450d2c2803008f0f3c43791b (patch)
tree6e6fc11e7b311806542e532d9a0c12ded1d41e10
parent9b55d1a2495b843411c5185b9035a837328bdf67 (diff)
Update pnote version
-rw-r--r--README.md8
-rw-r--r--pnote/__init__.py2
2 files changed, 8 insertions, 2 deletions
diff --git a/README.md b/README.md
index 0e72507..a8bed45 100644
--- a/README.md
+++ b/README.md
@@ -34,11 +34,17 @@ Tag files:
> pnote ~/mynotes tag -h
```
-Administrate your project:
+Manage your project:
```
> pnote ~/mynotes admin -h
```
+Export your notes:
+```
+> pnote ~/mynotes search --subpath | pnote ~/mynotes export --json
+> pnote ~/mynotes search --subpath | pnote ~/mynotes export --template template.txt
+```
+
For more information on *pnote*:
```
> pnote -h
diff --git a/pnote/__init__.py b/pnote/__init__.py
index feb7ceb..e4dd2d5 100644
--- a/pnote/__init__.py
+++ b/pnote/__init__.py
@@ -1,3 +1,3 @@
-__version__ = "0.0.25"
+__version__ = "0.0.26"
from pnote.__main__ import main