bearcli 1.6.2__tar.gz → 1.6.3__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.
Potentially problematic release.
This version of bearcli might be problematic. Click here for more details.
- {bearcli-1.6.2 → bearcli-1.6.3}/PKG-INFO +3 -4
- {bearcli-1.6.2 → bearcli-1.6.3}/README.md +1 -2
- {bearcli-1.6.2 → bearcli-1.6.3}/pyproject.toml +2 -2
- {bearcli-1.6.2 → bearcli-1.6.3}/LICENSE +0 -0
- {bearcli-1.6.2 → bearcli-1.6.3}/src/bearcli/__init__.py +0 -0
- {bearcli-1.6.2 → bearcli-1.6.3}/src/bearcli/cli/__init__.py +0 -0
- {bearcli-1.6.2 → bearcli-1.6.3}/src/bearcli/cli/common.py +0 -0
- {bearcli-1.6.2 → bearcli-1.6.3}/src/bearcli/cli/export.py +0 -0
- {bearcli-1.6.2 → bearcli-1.6.3}/src/bearcli/cli/misc.py +0 -0
- {bearcli-1.6.2 → bearcli-1.6.3}/src/bearcli/cli/notes.py +0 -0
- {bearcli-1.6.2 → bearcli-1.6.3}/src/bearcli/cli/tags.py +0 -0
- {bearcli-1.6.2 → bearcli-1.6.3}/src/bearcli/export.py +0 -0
- {bearcli-1.6.2 → bearcli-1.6.3}/src/bearcli/gitsync.py +0 -0
- {bearcli-1.6.2 → bearcli-1.6.3}/src/bearcli/py.typed +0 -0
- {bearcli-1.6.2 → bearcli-1.6.3}/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.3
|
|
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.3
|
|
16
16
|
Requires-Dist: textual>=8.2.8
|
|
17
17
|
Requires-Dist: typer>=0.27.0
|
|
18
18
|
Requires-Python: >=3.13
|
|
@@ -44,8 +44,7 @@ manage your notes from the terminal.
|
|
|
44
44
|
## Install
|
|
45
45
|
|
|
46
46
|
```sh
|
|
47
|
-
|
|
48
|
-
brew install michel-tricot/tap/bearcli # or via Homebrew
|
|
47
|
+
brew install michel-tricot/tap/bearcli # or: uv tool install bearcli, pipx install bearcli
|
|
49
48
|
```
|
|
50
49
|
|
|
51
50
|
Or from a clone: `uv sync`, then `uv run bearcli --help`.
|
|
@@ -21,8 +21,7 @@ manage your notes from the terminal.
|
|
|
21
21
|
## Install
|
|
22
22
|
|
|
23
23
|
```sh
|
|
24
|
-
|
|
25
|
-
brew install michel-tricot/tap/bearcli # or via Homebrew
|
|
24
|
+
brew install michel-tricot/tap/bearcli # or: uv tool install bearcli, pipx install bearcli
|
|
26
25
|
```
|
|
27
26
|
|
|
28
27
|
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.3"
|
|
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.3",
|
|
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
|