Description
A Changelog Management Tool written in Go which is compatible with Linux, Windows and Mac OS-X.
Think about that: You have a Project where you work with other 4-5 Peoples. How do you track changes so that they can
easily added to a Changelog File?
This Tool helps you to keep track of you Changelog (and changes) and its fully
compatible with (eg.) the Git Flow. This Tool does not aim to replace Tools
like Jira moreover, it extends it. Create Changelog Files easily with one
Command (changelog release ).
Feature branches can contain Changelog Entries and can be merged whenever you want!
It does not break the functionality.
changelog-go alternatives and similar packages
Based on the "Utilities" category.
Alternatively, view changelog-go alternatives based on common mentions on social networks and blogs.
-
项目文档
🚀Vite+Vue3+Gin拥有AI辅助的基础开发平台,支持TS和JS混用。它集成了JWT鉴权、权限管理、动态路由、显隐可控组件、分页封装、多点登录拦截、资源权限、上传下载、代码生成器、表单生成器和可配置的导入导出等开发必备功能。 -
excelize
Go language library for reading and writing Microsoft Excel™ (XLAM / XLSM / XLSX / XLTM / XLTX) spreadsheets -
Kopia
Cross-platform backup tool for Windows, macOS & Linux with fast, incremental backups, client-side end-to-end encryption, compression and data deduplication. CLI and GUI included. -
goreporter
A Golang tool that does static analysis, unit testing, code review and generate code quality report. -
create-go-app
✨ A complete and self-contained solution for developers of any qualification to create a production-ready project with backend (Go), frontend (JavaScript, TypeScript) and deploy automation (Ansible, Docker) by running only one CLI command. -
EaseProbe
A simple, standalone, and lightweight tool that can do health/status checking, written in Go. -
filetype
Fast, dependency-free Go package to infer binary file types based on the magic numbers header signature -
boilr
:zap: boilerplate template manager that generates files or directories from template repositories -
beaver
💨 A real time messaging system to build a scalable in-app notifications, multiplayer games, chat apps in web and mobile apps. -
go-underscore
Helpfully Functional Go - A useful collection of Go utilities. Designed for programmer happiness.
CodeRabbit: AI Code Reviews for Developers

Do you think we are missing an alternative of changelog-go or a related project?
Popular Comparisons
README
changelog-go
A Changelog Management Tool written in Go which is compatible with Linux, Windows and Mac OS-X.
Demo
Motivation
Think about that: You have a Project where you work with other 4-5 Peoples. How do you track changes so that they can easily added to a Changelog File?
This Tool helps you to keep track of you Changelog (and changes) and its fully
compatible with (eg.) the Git Flow. This Tool does not aim to replace Tools
like Jira moreover, it extends it. Create Changelog Files easily with one
Command (changelog release <version>
).
Feature branches can contain Changelog Entries and can be merged whenever you want! It does not break the functionality.
And this Tool does not disturb any other Tool (eg IDE, CI/CD, Artifact, ...)
Features
- seamless integration into your Workflow and CI/CD environment
- works with Git, SVN, ... (every version control system)
- highly customizable
CHANGELOG.md
output can be easily changed without writting any code- for internal and OpenSource Projects
- MIT license
- wide range of supported (and pre-compiled) Operating Systems
- keep track of changes made in your Project
- generates a changelog exactly the way you want it
- free and fast support
Installation
There are many possibilities to install this Application.
snap
~] snap install changelog
script
You can also install changelog-go
via a shell script:
~] curl https://gitlab.com/l0nax/changelog-go/raw/master/install.sh | bash
RPM/ Deb
### (1) download the file from https://gitlab.com/l0nax/changelog-go/-/releases
### (2) install it via
~] rpm -iv PATH/TO/FILE
# or
~] dep -iv PATH/TO/FILE
binary
- Download the binary file from the Release Page
- Add the Path to the binary to your
$PATH
environment variable
Usage
NOTE: You don't have to be at the root path (eg. where your .git
relies) to
generate/ create a Changelog(-Entry)
Initialize directory
- Run
changelog init
and edit the config file (.changelog-go.yaml
)
Create a new change entry
- Run
changelog new "<title>"
and then choose from the list which category is the best fit. - Add and commit the new Changelog File
Example:
## (1) create changelog entry
~] changelog new "Fix 'go pos'-Parser Bug"
Using config file: /root/.go/src/gitlab.com/l0nax/test/.changelog-go.yaml
[0] New Feature (Added)
[1] Bug Fix (Fixed)
[2] Feature change (Changed)
[3] New deprecation (Deprecated)
[4] Feature removal (Removed)
[5] Security fix (Security)
[6] Other (Other)
>> 1
## (2) add and commit changelog Entry
~] git add .changelogs/unreleased/bugfix_P71128-114_bug-in-go-to-parser-gnAfCUyu
~] git commit -m "Add changelog entry"
## (3) push/ merge your changes or create (ie.) a Pull-Request
Release a new version
Releasing a new Version is as simple as creating a new changelog entry:
- Run
changelog release <version>
- Add and Commit the new
CHANGELOG.md
and changed files under.changelogs
Example:
## (1) generate new changelog
~] changelog release 2.0.0
## (2) commit CHANGELOG.md and `.changelogs`
~] git add .changelogs CHANGELOG.md
~] git commit -m "Generating new CHANGELOG.md"
## (3) push/ merge your changes or create (ie.) a Pull-Request
*Note that all licence references and agreements mentioned in the changelog-go README section above
are relevant to that project's source code only.