code-data-ark 2.0.7__tar.gz → 2.0.8__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.
- {code_data_ark-2.0.7 → code_data_ark-2.0.8}/PKG-INFO +1 -1
- {code_data_ark-2.0.7 → code_data_ark-2.0.8}/cda/__init__.py +1 -1
- {code_data_ark-2.0.7 → code_data_ark-2.0.8}/cda/ui/cli.py +1 -1
- {code_data_ark-2.0.7 → code_data_ark-2.0.8}/pyproject.toml +1 -1
- code_data_ark-2.0.8/version +1 -0
- code_data_ark-2.0.7/version +0 -1
- {code_data_ark-2.0.7 → code_data_ark-2.0.8}/.flake8 +0 -0
- {code_data_ark-2.0.7 → code_data_ark-2.0.8}/.github/workflows/ci.yml +0 -0
- {code_data_ark-2.0.7 → code_data_ark-2.0.8}/.gitignore +0 -0
- {code_data_ark-2.0.7 → code_data_ark-2.0.8}/bin/release.py +0 -0
- {code_data_ark-2.0.7 → code_data_ark-2.0.8}/cda/__main__.py +0 -0
- {code_data_ark-2.0.7 → code_data_ark-2.0.8}/cda/kernel/__init__.py +0 -0
- {code_data_ark-2.0.7 → code_data_ark-2.0.8}/cda/kernel/control_db.py +0 -0
- {code_data_ark-2.0.7 → code_data_ark-2.0.8}/cda/kernel/paths.py +0 -0
- {code_data_ark-2.0.7 → code_data_ark-2.0.8}/cda/kernel/pmf_kernel.py +0 -0
- {code_data_ark-2.0.7 → code_data_ark-2.0.8}/cda/kernel/selfcheck.py +0 -0
- {code_data_ark-2.0.7 → code_data_ark-2.0.8}/cda/pipeline/__init__.py +0 -0
- {code_data_ark-2.0.7 → code_data_ark-2.0.8}/cda/pipeline/embed.py +0 -0
- {code_data_ark-2.0.7 → code_data_ark-2.0.8}/cda/pipeline/extract.py +0 -0
- {code_data_ark-2.0.7 → code_data_ark-2.0.8}/cda/pipeline/ingest.py +0 -0
- {code_data_ark-2.0.7 → code_data_ark-2.0.8}/cda/pipeline/parse_edits.py +0 -0
- {code_data_ark-2.0.7 → code_data_ark-2.0.8}/cda/pipeline/reconstruct.py +0 -0
- {code_data_ark-2.0.7 → code_data_ark-2.0.8}/cda/pipeline/watcher.py +0 -0
- {code_data_ark-2.0.7 → code_data_ark-2.0.8}/cda/ui/__init__.py +0 -0
- {code_data_ark-2.0.7 → code_data_ark-2.0.8}/cda/ui/web.py +0 -0
- {code_data_ark-2.0.7 → code_data_ark-2.0.8}/changelog.md +0 -0
- {code_data_ark-2.0.7 → code_data_ark-2.0.8}/contributing.md +0 -0
- {code_data_ark-2.0.7 → code_data_ark-2.0.8}/docs/architecture.md +0 -0
- {code_data_ark-2.0.7 → code_data_ark-2.0.8}/docs/examples/usage.md +0 -0
- {code_data_ark-2.0.7 → code_data_ark-2.0.8}/docs/pmf_kernel.md +0 -0
- {code_data_ark-2.0.7 → code_data_ark-2.0.8}/docs/roadmap.md +0 -0
- {code_data_ark-2.0.7 → code_data_ark-2.0.8}/license +0 -0
- {code_data_ark-2.0.7 → code_data_ark-2.0.8}/makefile +0 -0
- {code_data_ark-2.0.7 → code_data_ark-2.0.8}/readme.md +0 -0
- {code_data_ark-2.0.7 → code_data_ark-2.0.8}/tests/test_basic.py +0 -0
- {code_data_ark-2.0.7 → code_data_ark-2.0.8}/tests/test_selfcheck.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: code-data-ark
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.8
|
|
4
4
|
Summary: Code Data Ark — local observability and intelligence platform for VS Code + Copilot Chat sessions
|
|
5
5
|
Project-URL: Homepage, https://github.com/goCosmix/cda
|
|
6
6
|
Project-URL: Repository, https://github.com/goCosmix/cda.git
|
|
@@ -255,7 +255,7 @@ class CDAGroup(click.Group):
|
|
|
255
255
|
|
|
256
256
|
@click.group(cls=CDAGroup, invoke_without_command=True)
|
|
257
257
|
@click.pass_context
|
|
258
|
-
@click.version_option("
|
|
258
|
+
@click.version_option(package_name="code-data-ark", prog_name="cda")
|
|
259
259
|
def cli(ctx):
|
|
260
260
|
if ctx.invoked_subcommand is None:
|
|
261
261
|
click.echo(ctx.get_help())
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "code-data-ark"
|
|
7
|
-
version = "2.0.
|
|
7
|
+
version = "2.0.8"
|
|
8
8
|
description = "Code Data Ark — local observability and intelligence platform for VS Code + Copilot Chat sessions"
|
|
9
9
|
readme = "readme.md"
|
|
10
10
|
license = "MIT"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
2.0.8
|
code_data_ark-2.0.7/version
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
2.0.7
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|