v0.2.5 - Documentation Accuracy & Post-Release Verification
Fixed - Documentation Accuracy
Post-Release Verification & Documentation Refresh
Summary: Corrected stale documentation references and verified all test tiers pass reliably after v0.2.3/v0.2.4 regression fixes.
What Changed:
- Updated CONTRIBUTING.md to remove outdated "known regressions" warnings
- Removed stale references to Tier 1 test failures (regressions fixed in v0.2.3)
- Clarified that all test tiers (0, 1, Go unit tests) now pass reliably
- Updated pre-push checklist to reflect current expected behavior
Documentation Corrections:
- CONTRIBUTING.md line 124: Removed "Tier 1 tests currently FAIL" warning (outdated)
- CONTRIBUTING.md line 189: Removed "Expected to FAIL" comment (outdated)
- CONTRIBUTING.md line 198: Updated to state "MUST all pass" instead of "currently FAILS"
Verification Performed:
- ✅ All Go unit tests pass
- ✅ Tier 0 (CLI Help Matrix) passes
- ✅ Tier 1 (E2E Smoke Tests) passes (verified in CI)
- ✅ Documentation now matches implementation reality
Files Changed:
CONTRIBUTING.md- Removed stale regression warnings, updated test expectations
Release Focus:
v0.2.5 is a post-release documentation accuracy release that:
- ✅ Confirms all regressions from v0.2.2 are fixed
- ✅ Updates contributor documentation to match reality
- ✅ Verifies test infrastructure stability
- ✅ Ensures clear guidance for new contributors
No Product Changes: This release contains NO changes to acc product behavior, CLI semantics, JSON schemas, or exit codes. All changes are documentation accuracy improvements.
No Test Changes: This release contains NO changes to test scripts or CI workflows. All test infrastructure remains unchanged from v0.2.4.
Installation
Download the appropriate binary for your platform and verify the checksum:
Linux (AMD64):
curl -LO "https://github.com/cloudcwfranck/acc/releases/download/v0.2.5/acc_0.2.5_linux_amd64.tar.gz"
curl -LO "https://github.com/cloudcwfranck/acc/releases/download/v0.2.5/checksums.txt"
sha256sum -c checksums.txt --ignore-missing
tar -xzf acc_0.2.5_linux_amd64.tar.gz
sudo mv acc-linux-amd64 /usr/local/bin/acc
chmod +x /usr/local/bin/acc
acc versionmacOS (Apple Silicon):
curl -LO "https://github.com/cloudcwfranck/acc/releases/download/v0.2.5/acc_0.2.5_darwin_arm64.tar.gz"
curl -LO "https://github.com/cloudcwfranck/acc/releases/download/v0.2.5/checksums.txt"
shasum -a 256 -c checksums.txt --ignore-missing
tar -xzf acc_0.2.5_darwin_arm64.tar.gz
sudo mv acc-darwin-arm64 /usr/local/bin/acc
chmod +x /usr/local/bin/acc
acc versionSee README.md for complete installation instructions.