Generador de Changelog
Crea un CHANGELOG.md estilo Keep-a-Changelog añadiendo entradas a los buckets de Añadido / Cambiado / Corregido / Eliminado / Seguridad.
Respuesta rápida: Generador de Changelog: crea un CHANGELOG.md al estilo Keep a Changelog añadiendo entradas en las categorías Añadido / Modificado / Corregido / Eliminado / Seguridad. Funciona íntegramente en el navegador, gratis y sin registro.
Última actualización
Bueno saber
A changelog is the human-facing history of a project — the answer to "what changed and should I care?" that a raw Git log can never give, because commit messages are written for developers mid-work, not for users deciding whether to upgrade. This generator follows the Keep a Changelog convention, which groups every release's notes into five clear buckets: Added, Changed, Deprecated/Removed, Fixed and Security. That last one is not decoration — flagging security fixes explicitly helps users prioritize urgent upgrades.
Order and structure are the whole value. Entries are written for people, so "Fixed crash when importing empty CSV files" beats "fix null ref in parser," and releases are listed newest-first so the current version is always at the top. Each version gets a heading with its number and release date, which pairs naturally with Semantic Versioning — MAJOR.MINOR.PATCH — where the bucket an entry lands in often signals which number to bump: a breaking change means a major, a new feature a minor, a bug fix a patch.
A good habit is to keep an Unreleased section at the top and jot entries as you merge them, so writing the changelog is not a scramble at release time. Because everything renders in your browser as standard CHANGELOG.md Markdown, it drops straight into your repo root next to the README. Generate the surrounding project files with the .gitignore generator and the license generator.
Preguntas frecuentes
- ¿Es gratuito el generador de changelogs?
- Sí — gratis, sin registro.
- ¿Qué formato sigue?
- Keep a Changelog 1.1 (Añadido / Cambiado / Corregido / Eliminado / Seguridad) — el formato más utilizado.
- ¿Mis entradas se suben?
- No — cada cambio ocurre en tu navegador.
- ¿Debería escribir un changelog?
- Sí — para cualquier proyecto del que dependan los usuarios, un changelog claro reduce drásticamente el dolor de las actualizaciones.
- ¿Cómo hago versiones?
- La versión semántica (semver) es la convención de facto: MAYOR.MENOR.PARCHE.