Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Clone this repo when you want a command that inspects a local repository and wri

## Status

The inspect CLI version is `0.2.0`. Published versions and their immutable
The current source version is `0.2.1`. Published versions and their immutable
artifacts are listed on [GitHub Releases](https://github.com/The-Interdependency/pubskill-lib/releases).

| Claim | State |
Expand All @@ -30,7 +30,7 @@ python -m unittest discover -s tests
python -m pubskill_lib.audit examples/neglected-repo --out /tmp/findings.json
```

Those commands are the definition of done for the first utility tag (`v0.2.0`). They run in GitHub CI from a clean checkout; publish the tag only after the release gate is explicitly completed.
Those commands defined done for the first utility tag (`v0.2.0`) and remain the baseline for the `0.2.x` line. Publish a new tag only after the release gate is explicitly completed for that exact source.

## Reproduce release artifacts

Expand Down Expand Up @@ -59,7 +59,13 @@ The wheel retains its canonical skill-lib source pin without requiring a checkou

Download the wheel, source archive, manifest, and `SHA256SUMS` from the chosen
release. Verify the downloaded files with `sha256sum -c SHA256SUMS`, then install
the verified wheel with `python -m pip install --no-deps ./pubskill_lib-0.2.0-py3-none-any.whl`.
the verified wheel after substituting that release's version:

```bash
VERSION=0.2.0
python -m pip install --no-deps "./pubskill_lib-${VERSION}-py3-none-any.whl"
```

Checksums establish byte identity; they are not a signature or a blanket health claim.

## Inspect CLI
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "pubskill-lib"
version = "0.2.0"
version = "0.2.1"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Update the sdist replay directory for version 0.2.1

With this version bump, the release builder produces an sdist rooted at pubskill_lib-0.2.1, but the release-artifact replay step in .github/workflows/ci.yml still runs cd /tmp/pubskill-replay/pubskill_lib-0.2.0. Every CI job reaching that step will therefore fail before replaying the tests; update the workflow to use the new version or derive the extracted directory dynamically.

Useful? React with 👍 / 👎.

description = "Public inspect CLI for evidence-led repository findings"
readme = "README.md"
requires-python = ">=3.11"
Expand Down
2 changes: 1 addition & 1 deletion src/pubskill_lib/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""pubskill-lib: public inspect CLI for evidence-led repository findings."""

__version__ = "0.2.0"
__version__ = "0.2.1"
Loading