Tested tool guide
Tested browser tools
Checked August 16, 2026
What Changelog Generator does, with a checked example
This tool assembles a changelog entry in Keep a Changelog format. You supply a version number, a release date, and change descriptions assigned to categories; it returns a block with a `## [1.2.0] - 2026-08-16` heading and `###` category headings, ready to paste into CHANGELOG.md. Everything runs in the browser; nothing you type is uploaded. The usual mistake is loose categorization: the six categories are fixed and narrower than everyday usage, so a bug fix belongs under Fixed, not Changed, and a still-present but superseded feature under Deprecated, not Removed. The date is the release date in ISO 8601 form, not today's date.
Worked example
A concrete input and expected output from the current implementation.
Input
Version: 1.2.0
Date: 2026-08-16
Added
- Support for dark mode
- Export to CSV
Fixed
- Saved dates displayed one day early
->
Expected output
## [1.2.0] - 2026-08-16
### Added
- Support for dark mode
- Export to CSV
### Fixed
- Saved dates displayed one day early
Each entered item becomes a `- ` bullet under its category heading, and only the categories you used appear, in the canonical template order (Added, Changed, Deprecated, Removed, Fixed, Security), so Fixed follows Added. The heading joins the version and the ISO date in the spec's `## [version] - date` form.