Update CHANGELOG for v0.2.2 and v0.2.3

This commit is contained in:
2026-06-01 19:34:49 +02:00
parent e9f1299602
commit db0cb37d8f
2 changed files with 30 additions and 0 deletions
+23
View File
@@ -4,6 +4,29 @@ All notable changes to NotAlterra are documented in this file.
---
## [v0.2.3] — 2026-06-01
### Added
- 25-test integration suite (guard, config, ops, gvas)
- Issue templates (bug report, feature request)
- CONTRIBUTING.md with AI usage disclosure
- GOVERNANCE.md with access recovery plan
- Build script warns when CHANGELOG lacks current version
### Security
- Logged paths truncated at `Subnautica2/` — personal paths removed
## [v0.2.2] — 2026-06-01
### Changed
- 100% function doc coverage with automated check script
- `last_path``save_path`, `last_scan``save_scan`, `config_path``ini_path`
- Windows executable renamed to `NotAlterra.exe`
- Diligence skill added for verification
### Security
- Logged paths truncated at `Subnautica2/` — personal paths removed
## [v0.2.0] — 2026-06-01
### Added
+7
View File
@@ -18,6 +18,13 @@ fi
VERSION=$(grep '^version' Cargo.toml | head -1 | sed 's/.*"\(.*\)".*/\1/')
echo "=== NotAlterra v${VERSION} ==="
# Ensure changelog has current version header
if grep -q "## \[v${VERSION}\]" CHANGELOG.md 2>/dev/null; then
echo " CHANGELOG.md already has v${VERSION} entry"
else
echo " WARNING: CHANGELOG.md has no v${VERSION} entry — add one before releasing"
fi
# Ensure Windows target is installed
if ! rustup target list --installed | grep -q x86_64-pc-windows-gnu; then
echo "Installing Windows target..."