# Changelog
All notable changes to Pentest Copilot are documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/),
and this project adheres to [Semantic Versioning](https://semver.org/).
## [Unreleased]
### Added
### Changed
### Fixed
### Security
## [13.7] - 2026-05-27
### Added
- LICENSE (Apache 2.0), SECURITY.md, CONTRIBUTING.md, PR template, CI workflow
- Quality eval framework (`eval/quality/`) with judge calibration suite
- 12 structural verifier rules (regression patterns + truncation detection)
- ...
## [13.1] - ...
## [13] - ...
## [12] - ...
## [alpha-0.1] - ...
Problem
Version history is currently spread across:
RELEASE_NOTES_alpha_v0.1.mdRELEASE_NOTES_v12.mdRELEASE_NOTES_v13.mdRELEASE_NOTES_v13_1.mdThere's no single file to consult for "what changed when," and no
[Unreleased]section for PR contributors to write into. The PR template (.github/PULL_REQUEST_TEMPLATE.md) already asks contributors to updateCHANGELOG.md— but the file doesn't exist yet.Acceptance criteria
CHANGELOG.mdin the repo root, following the Keep a Changelog format:RELEASE_NOTES_*.mdcontent into the Added / Changed / Fixed / Security / Removed / Deprecated subsectionsRELEASE_NOTES_*.mdfiles in this PR (separate cleanup); the CHANGELOG is the new canonical source going forwardPointers
RELEASE_NOTES_alpha_v0.1.md,RELEASE_NOTES_v12.md,RELEASE_NOTES_v13.md,RELEASE_NOTES_v13_1.mdgit log --oneline | grep -E "v13\.[2-6]"Difficulty
S-M (2-4 hours) — mostly content consolidation; the format is well-defined.