CHANGELOG Entry Generator

Keep-a-changelog format release notes

Generate CHANGELOG.md entries in the Keep a Changelog format with version, date and standard change-type sections (Added, Changed, Fixed, Removed, Deprecated, Security). Paste in your notes and copy clean Markdown. It runs free in your browser on Gera Tools, with nothing uploaded.

Last updated Source: Gera Tools

What is the Keep a Changelog format?

Keep a Changelog is a widely adopted convention where each release has a version heading with a date, then grouped sections: Added, Changed, Deprecated, Removed, Fixed and Security. It is written for humans, newest entry first.

Consistent release notes every time

The CHANGELOG Entry Generator formats your release notes into the Keep a Changelog standard so every entry looks the same. Inconsistent changelogs (mixed headings, missing dates, ad-hoc sections) make history hard to scan. Enter a version, a date and your bullets, and copy a clean Markdown block to drop into CHANGELOG.md.

How it works

Keep a Changelog defines a fixed structure: a version heading carrying the release date, then a set of standard sections in a recommended order. The generator builds the heading and emits only the sections you filled in:

## [1.4.0] - 2026-06-06

### Added
- New CSV export endpoint for Finance reports

### Changed
- Dashboard cards now refresh every 60 seconds instead of requiring a manual reload

### Fixed
- Crash when filtering on empty date ranges
- Team members with read-only access could incorrectly reach billing settings

Each non-empty section becomes a ### heading, and every line you type becomes a - bullet. The version is wrapped in square brackets per the convention so it can later be linked to a diff or a git tag.

The six section types and when to use each

SectionPurposeExample
AddedNew features that did not exist before”Added bulk CSV export for date ranges”
ChangedModifications to existing behaviour”Default sort order is now newest-first”
DeprecatedFeatures that will be removed in a future release”The v1 API endpoint is deprecated; use /v2/”
RemovedFeatures or APIs removed in this release”Removed the legacy XML export option”
FixedBug fixes”Fixed empty chart when no data in range”
SecurityVulnerabilities patched”Patched IDOR vulnerability in user settings API”

Empty sections are omitted from the output so the entry stays concise. A typical patch release has only “Fixed”; a minor release typically has “Added” and maybe “Changed.”

Tips for a useful CHANGELOG

  • One entry per version. Keep a Changelog puts the newest version at the top. Never edit a past entry — add corrections in the next release.
  • Maintain an Unreleased section. Add bullets as you merge, then rename [Unreleased] to the version on release day. This avoids scrambling for release notes at deploy time.
  • Bullets are for humans, not CI. Describe the impact on the user — “Fixed a crash when uploading files over 50 MB” — not the internal ticket or commit hash.
  • Link versions to diffs. At the bottom of CHANGELOG.md add comparison URLs like [1.4.0]: https://github.com/org/repo/compare/v1.3.0...v1.4.0 so readers can jump straight to the code changes.