stata-code 0.3.0__tar.gz → 0.3.1__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.
- {stata_code-0.3.0 → stata_code-0.3.1}/CHANGELOG.md +27 -0
- stata_code-0.3.1/PKG-INFO +693 -0
- stata_code-0.3.1/README.md +655 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/pyproject.toml +1 -1
- {stata_code-0.3.0 → stata_code-0.3.1}/stata_code/__init__.py +1 -1
- {stata_code-0.3.0 → stata_code-0.3.1}/stata_code/mcp/server.py +1 -1
- stata_code-0.3.0/PKG-INFO +0 -389
- stata_code-0.3.0/README.md +0 -351
- {stata_code-0.3.0 → stata_code-0.3.1}/.gitignore +0 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/LICENSE +0 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/LICENSE-POLICY.md +0 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/PUBLISHING.md +0 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/SCHEMA.md +0 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/docs/design/hard_timeout.md +0 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/examples/01-basic-regression.md +0 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/examples/02-did-card-krueger.md +0 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/examples/03-graphs.md +0 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/examples/04-multi-session.md +0 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/examples/05-large-matrix.md +0 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/examples/README.md +0 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/schema/run_result.schema.json +0 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/scripts/export_schema.py +0 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/stata_code/core/__init__.py +0 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/stata_code/core/_pool.py +0 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/stata_code/core/_refs.py +0 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/stata_code/core/_runtime.py +0 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/stata_code/core/errors.py +0 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/stata_code/core/runner.py +0 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/stata_code/core/schema.py +0 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/stata_code/kernel/__init__.py +0 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/stata_code/kernel/__main__.py +0 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/stata_code/kernel/kernel.py +0 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/stata_code/mcp/__init__.py +0 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/stata_code/mcp/__main__.py +0 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/tests/__init__.py +0 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/tests/fixtures/.gitkeep +0 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/tests/test_cancel.py +0 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/tests/test_errors.py +0 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/tests/test_kernel.py +0 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/tests/test_mcp.py +0 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/tests/test_pool.py +0 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/tests/test_runner.py +0 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/tests/test_schema.py +0 -0
- {stata_code-0.3.0 → stata_code-0.3.1}/tests/test_schema_artifact.py +0 -0
|
@@ -6,6 +6,33 @@ to semver-major.minor for the result schema (see `SCHEMA.md` §6).
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.3.1] — 2026-05-07
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- **VSCode extension polish.** Custom SVG toolbar icons (sessions / output /
|
|
14
|
+
graphs / data / run / stop / reset / new-tab / switch-tab) replace the
|
|
15
|
+
generic codicons; toolbar buttons render in the editor title bar with
|
|
16
|
+
consistent visual weight. Adds `View Data Preview` command surfaced from
|
|
17
|
+
the command palette and the editor right-click menu for opening the
|
|
18
|
+
current `Last Result` dataset preview without re-running.
|
|
19
|
+
- **Run history retains origin URI and base line** so reruns from the
|
|
20
|
+
Sessions / Last Result views replay the correct file/selection rather
|
|
21
|
+
than re-resolving against whatever editor happens to be focused.
|
|
22
|
+
- **Marketplace publishing pipeline** (`.github/workflows/vscode-release.yml`).
|
|
23
|
+
Tagging `v*` now packages `vscode/` into a VSIX and publishes via `vsce`
|
|
24
|
+
using a stored `VSCE_PAT`. `vscode/.vscodeignore` tightened to exclude
|
|
25
|
+
`.git/`, stale `.vsix` artifacts, and `.npmignore`. `vscode/LICENSE`
|
|
26
|
+
vendored from the repo root so the VSIX ships its declared MIT license.
|
|
27
|
+
- **README docs.** English-first / Chinese-second bilingual layout, with
|
|
28
|
+
expanded Claude Code MCP install instructions (`claude mcp add` patterns)
|
|
29
|
+
and VS Code Marketplace install steps now that the extension is live.
|
|
30
|
+
|
|
31
|
+
### Fixed
|
|
32
|
+
|
|
33
|
+
- **mcpClient handshake** version string aligned with `package.json` so
|
|
34
|
+
the VSCode client and MCP server announce matching versions.
|
|
35
|
+
|
|
9
36
|
## [0.3.0] — 2026-05-07
|
|
10
37
|
|
|
11
38
|
### Changed
|