@@ -6,7 +6,7 @@ a thin launcher that depends on this package being available first.
66## Package
77
88- PyPI package name: ` intentprobe `
9- - current version: ` 0.1.0 `
9+ - current version: ` 0.1.1 `
1010- Python: ` >=3.10,<3.14 `
1111- entry points: ` intentprobe ` , ` intentprobe-hook `
1212
@@ -16,28 +16,31 @@ The release wheel should be built from a freshly extracted sdist, not directly
1616from the live repo checkout. The repo may have an ignored ` build/ ` directory,
1717and a direct wheel build can accidentally reuse stale files.
1818
19- The local release gate was run on 2026-06-08:
19+ The local release gate for ` 0.1.1 ` was run on 2026-06-08. This is a
20+ README/PyPI-description sync patch after the root README moved to the primary
21+ ` python3 -m pip install intentprobe ` install path.
2022
2123- ` python -m build --sdist ` from the repo: passed.
22- - extract ` intentprobe-0.1.0 .tar.gz ` , then ` python -m build --wheel ` : passed.
24+ - extract ` intentprobe-0.1.1 .tar.gz ` , then ` python -m build --wheel ` : passed.
2325- ` twine check ` on sdist and wheel: passed.
2426- ` check-wheel-contents ` : passed.
2527- wheel contains ` metadata.json ` , ` probe_weights.npz ` , ` targets.py ` , and entry
2628 points.
2729- sdist contains release docs, runtime docs, operator decision docs, evidence
2830 packet, examples, research fixtures, and scanner artifact.
29- - no-deps wheel smoke import passed: package version ` 0.1.0 ` , metadata file
31+ - no-deps wheel smoke import passed: package version ` 0.1.1 ` , metadata file
3032 present, probe weights present.
3133
3234## Registry status
3335
3436Published on 2026-06-08:
3537
3638- PyPI release: < https://pypi.org/project/intentprobe/0.1.0/ >
37- - ` python3 -m pip index versions intentprobe ` shows ` 0.1.0 ` .
39+ - PyPI release: < https://pypi.org/project/intentprobe/0.1.1/ >
40+ - ` python3 -m pip index versions intentprobe ` shows ` 0.1.1 ` .
3841- Fresh PyPI install smoke passed: ` intentprobe --version ` returned
3942 ` activation-scanner-core-2026-06-03-static-v3 ` .
40- - Installed package version was ` 0.1.0 ` .
43+ - Installed package version was ` 0.1.1 ` .
4144- Bundled ` metadata.json ` and ` probe_weights.npz ` were present.
4245
4346## Publish command
@@ -47,8 +50,8 @@ After PyPI auth is configured:
4750``` bash
4851. /tmp/intentprobe-release-paths.env
4952/tmp/intentprobe-release-tools/bin/python -m twine upload \
50- " $sdist_dist " /intentprobe-0.1.0 .tar.gz \
51- " $wheel_dist " /intentprobe-0.1.0 -py3-none-any.whl
53+ " $sdist_dist " /intentprobe-0.1.1 .tar.gz \
54+ " $wheel_dist " /intentprobe-0.1.1 -py3-none-any.whl
5255```
5356
5457Do not upload from old ` dist/ ` files unless they were rebuilt during the same
@@ -60,10 +63,10 @@ release gate.
6063python3 -m pip index versions intentprobe
6164python3 -m venv /tmp/intentprobe-pypi-smoke
6265/tmp/intentprobe-pypi-smoke/bin/python -m pip install --upgrade pip
63- /tmp/intentprobe-pypi-smoke/bin/python -m pip install intentprobe
66+ /tmp/intentprobe-pypi-smoke/bin/python -m pip install intentprobe==0.1.1
6467/tmp/intentprobe-pypi-smoke/bin/intentprobe --help
6568/tmp/intentprobe-pypi-smoke/bin/intentprobe doctor --pretty
6669```
6770
68- After npm is live, update the root README to advertise the simpler
69- ` npx intentprobe ... ` path .
71+ The npm launcher is not the public install path until npm auth is refreshed and
72+ the npm package is published .
0 commit comments