Guide

Changelog vs Release Notes: What's the Difference?

A changelog is a running technical log of every version's changes; release notes are a curated, reader-friendly announcement of what matters in a specific release.

Updated 2026-06-30

What is the difference between a changelog and release notes?

A changelog is a running, chronological log of every notable change across all versions of a product, usually terse and technical and maintained in the repository. Release notes are a curated, reader-friendly announcement of what matters in one specific release, written to be read by users rather than parsed by developers. In short, a changelog is the complete record; release notes are the highlight reel for a single version.

The two overlap heavily and many teams use the words interchangeably, which is fine in casual use. But understanding the distinction helps you decide what to write, for whom, and where it should live.

Changelog: the running record

A changelog answers 'what changed in every version, ever?' It is comprehensive, ordered newest-first, and often follows a convention such as Keep a Changelog with fixed sections for Added, Changed, Deprecated, Removed, Fixed, and Security. It typically lives in a CHANGELOG.md file at the root of the repository.

Because it is exhaustive, a changelog leans technical and concise. It is the canonical history a developer scans to find exactly when a behavior changed or when a fix landed.

  • Audience: primarily developers and power users.
  • Scope: every notable change across all versions.
  • Tone: terse, factual, technical.
  • Lives in: the repository, often CHANGELOG.md.

Release notes: the curated announcement

Release notes answer 'what should I know about this release?' They are selective, written in plain language, and focused on benefits and required actions. They often accompany a product update email, an in-app banner, or a hosted changelog page.

Where a changelog might list 'Fixed null pointer in export worker', release notes would say 'Fixed an issue that could interrupt large CSV exports.' Same event, different audience and intent.

  • Audience: end users, customers, and stakeholders.
  • Scope: the highlights of one specific release.
  • Tone: friendly, benefit-first, jargon-free.
  • Lives in: a public page, email, or in-app feed.

A side-by-side example

Imagine you ship v2.4.0 with a faster search index, a fixed export bug, and a removed legacy endpoint. Here is how each format treats the same release.

Changelog entry: 'v2.4.0 — Added: incremental search index. Fixed: export worker crash on null cursor. Removed: deprecated /v1/search endpoint.' Three terse lines, technically precise.

Release note: 'Search is now noticeably faster, especially on large workspaces. We also fixed a bug that could interrupt big exports. Note: the old /v1/search API endpoint has been removed; switch to /v2/search before upgrading.' The same facts, reframed for a human deciding whether to upgrade.

Do you need both?

Many teams maintain both and let one feed the other. A disciplined changelog in the repo becomes the source of truth, and the release notes are a curated, rewritten subset published to users. This keeps engineers honest about recording changes while still giving customers something readable.

Smaller teams often collapse the two into a single hosted changelog that is written well enough to serve both audiences. That is perfectly valid; the key is that the changes are recorded, dated, and readable.

Frequently asked questions

Is a changelog the same as release notes?+

Not exactly. A changelog is a complete, chronological record of every notable change across all versions, while release notes are a curated, reader-friendly summary of one specific release. The terms are often used interchangeably, but a changelog is broader and more technical.

Where does a changelog usually live?+

A changelog typically lives in the project's repository as a CHANGELOG.md file, often following the Keep a Changelog convention. It can also be published to a hosted page so users and customers can read it.

Can release notes and a changelog be the same document?+

Yes. Smaller teams often maintain a single well-written hosted changelog that serves both developers and end users. The important thing is that changes are recorded, dated, versioned, and readable.

Which should I write first?+

Maintain the changelog as you merge changes, then curate release notes from it at release time. Recording changes continuously makes writing the user-facing notes faster and more accurate.

Are patch notes the same as release notes?+

Patch notes are a type of release note, usually focused on a small patch release that mostly contains bug fixes. The term is common in games and software, but it follows the same benefit-first, grouped-by-type principles as any release note.

Keep reading

Ship your next release in seconds

Connect a GitHub repo and let release-notes.dev write the changelog your users actually read. Free to start — no credit card.