Release v0.1.0 — read side implemented + E2E suite#19
Merged
Conversation
WHAT: - Bump version 0.0.1 -> 0.1.0 (Cargo.toml, pyproject.toml, Cargo.lock). - Add the Python E2E suite (python/tests/test_e2e.py): the COMPILED wheel vs the real git CLI across all 13 read methods + every repo_status state (18 tests). - Wire it into CI (ci.yml `python-e2e` job: maturin develop + run the suite) and the pre-push hook (best-effort, mirrors CI). - Flip the README status scaffold -> "v0.1.0 — read side implemented"; correct the Layout to the per-method `repo/` module structure. WHY: All M1 read-side work (13 primitives + the repo_status roll-up) is merged, parity-tested vs git, and now verified end-to-end through the compiled wheel. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Releases gitxtend v0.1.0 — the M1 read side, implemented and verified.
Cargo.toml,pyproject.toml,Cargo.lock).python/tests/test_e2e.py): the compiled wheel vs thereal
gitCLI — all 13 read methods + everyrepo_statusstate(up-to-date / ahead / behind / diverged / no-remote / error). 18 tests.
python-e2ejob (maturin develop + run the suite) so thewheel + Python API are checked on every PR; mirrored best-effort in the
pre-push hook.
per-method
repo/structure.What shipped in M1 (all merged before this PR)
13 read primitives —
is_git_repo, head_sha, current_branch, tracking_branch, remote_head_sha, ahead_behind, rev_list_count, log_subjects, is_clean, status_counts, remote_urls, last_commit_date, fetch— plus therepo_statusroll-up. 12 of the 13 read methods were written by a local model
(
qwen2.5-coder:32b) driven through newt-agent, each with parity tests vs git(see the commit trailers).
fetchand the roll-up were pilot-authored.Test plan
cargo test --no-default-features, clippy (core + python)-D warnings,cargo fmt --all --check— green.maturin develop --release+python python/tests/test_e2e.py— 18/18 green.