bearcli 1.6.1__tar.gz → 1.6.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {bearcli-1.6.1 → bearcli-1.6.2}/PKG-INFO +3 -2
- {bearcli-1.6.1 → bearcli-1.6.2}/README.md +1 -0
- {bearcli-1.6.1 → bearcli-1.6.2}/pyproject.toml +2 -2
- {bearcli-1.6.1 → bearcli-1.6.2}/LICENSE +0 -0
- {bearcli-1.6.1 → bearcli-1.6.2}/src/bearcli/__init__.py +0 -0
- {bearcli-1.6.1 → bearcli-1.6.2}/src/bearcli/cli/__init__.py +0 -0
- {bearcli-1.6.1 → bearcli-1.6.2}/src/bearcli/cli/common.py +0 -0
- {bearcli-1.6.1 → bearcli-1.6.2}/src/bearcli/cli/export.py +0 -0
- {bearcli-1.6.1 → bearcli-1.6.2}/src/bearcli/cli/misc.py +0 -0
- {bearcli-1.6.1 → bearcli-1.6.2}/src/bearcli/cli/notes.py +0 -0
- {bearcli-1.6.1 → bearcli-1.6.2}/src/bearcli/cli/tags.py +0 -0
- {bearcli-1.6.1 → bearcli-1.6.2}/src/bearcli/export.py +0 -0
- {bearcli-1.6.1 → bearcli-1.6.2}/src/bearcli/gitsync.py +0 -0
- {bearcli-1.6.1 → bearcli-1.6.2}/src/bearcli/py.typed +0 -0
- {bearcli-1.6.1 → bearcli-1.6.2}/src/bearcli/tui.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: bearcli
|
|
3
|
-
Version: 1.6.
|
|
3
|
+
Version: 1.6.2
|
|
4
4
|
Summary: The missing CLI for Bear notes — read, search, export, and manage your notes from the terminal
|
|
5
5
|
Keywords: bear,notes,cli,markdown,macos
|
|
6
6
|
Author: Michel Tricot
|
|
@@ -12,7 +12,7 @@ Classifier: Environment :: Console
|
|
|
12
12
|
Classifier: Operating System :: MacOS
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.13
|
|
14
14
|
Classifier: Topic :: Utilities
|
|
15
|
-
Requires-Dist: bearkit==1.6.
|
|
15
|
+
Requires-Dist: bearkit==1.6.2
|
|
16
16
|
Requires-Dist: textual>=8.2.8
|
|
17
17
|
Requires-Dist: typer>=0.27.0
|
|
18
18
|
Requires-Python: >=3.13
|
|
@@ -45,6 +45,7 @@ manage your notes from the terminal.
|
|
|
45
45
|
|
|
46
46
|
```sh
|
|
47
47
|
uv tool install bearcli # or: uvx bearcli, pipx install bearcli
|
|
48
|
+
brew install michel-tricot/tap/bearcli # or via Homebrew
|
|
48
49
|
```
|
|
49
50
|
|
|
50
51
|
Or from a clone: `uv sync`, then `uv run bearcli --help`.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "bearcli"
|
|
3
|
-
version = "1.6.
|
|
3
|
+
version = "1.6.2"
|
|
4
4
|
description = "The missing CLI for Bear notes — read, search, export, and manage your notes from the terminal"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
keywords = ["bear", "notes", "cli", "markdown", "macos"]
|
|
@@ -18,7 +18,7 @@ license = "MIT"
|
|
|
18
18
|
license-files = ["LICENSE"]
|
|
19
19
|
requires-python = ">=3.13"
|
|
20
20
|
dependencies = [
|
|
21
|
-
"bearkit==1.6.
|
|
21
|
+
"bearkit==1.6.2",
|
|
22
22
|
"textual>=8.2.8",
|
|
23
23
|
"typer>=0.27.0",
|
|
24
24
|
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|