Skip to main content

Easy git branch friendly changelogs

Project description

Easy Changelog

Python version

Install this repository from Pypi:

pip install ezchlog

Or any other means (pipx or a package manager).
Python 3.10+ required.

Rust version

Download a pre-compiled version from releases.

Don’t forget to download the checksum file and check for corruption.
You should rename the binary to ezchlog and place it on your PATH.

You can also compile the ezchlog rust binary from source (you should have rustc and cargo available):

make release

After installation

Then you’ll have a command to handle your logs:

ezchlog --help

Add a changelog

$ ezchlog add "New url for example API"
Changed            new_url_for_example_api
$ ezchlog add -p "Fix example API" Fixed 142
_CHANGELOGS/Fixed/142-fix_example_api.md

The file is automatically added to git index unless --no-git is used.

Create a git branch

If you use git, you can automatically create a git branch along the part log file.

For that use the -b or --branch parameter for the add commmand.

[master] $ ezchlog add -b "Fix example API" Fixed 142
Fixed            142-fix_example_api
[142_fix_example_api] $ 

You can configure the branch name using the branch_format, branch_separator and branch_lowercase_for config parameters.

List changelogs

$ ezchlog list
Fixed              142-fix_example_api
Changed            new_url_for_example_api
$ ezchlog list -p
_CHANGELOGS/Fixed/142-fix_example_api.md
_CHANGELOGS/Changed/new_url_for_example_api.md

Commit with git

If you use git, you can automatically create a git commit with its message using part log files.

By default it will use the only part log file in the git index as base for the git commit summary message.

If you have multiple files in the index, specify which one is the main one, i.e. which one will be use as the summary message.

All part log files in the index will be used in the full git message.

$ ezchlog commit
[master (root-commit) c0cc282] 142: Fix example API
 2 files changed, 3 insertions(+)
 create mode 100644 _CHANGELOGS/Fixed/142-fix_example_api.md
 create mode 100644 example/api_doc.md

The summary message format is {Ref}: {Title} if there is a reference, or simply {Title}.

  • Title is the part log first line, without the reference and without any markdown list prefix.
  • Ref is what is between brackets on the part log first line, with Ref added upfront if the reference start with a sharp # (because it’s a comment for git)

Merge changelogs

$ ezchlog merge 1.2.3
$ cat CHANGELOG.md
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.1.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## 1.2.3

### Fixed
- Fix example API (142)

### Changed
- New url for example API

Files are automatically updated in the git index unless --no-git is used.

You can also add more configuration:

$ ezchlog merge \
  --with-date \
  --link=https://gitlab.com/jrdasm/ezchlog/-/compare/v1.0.2...v1.1.0 \
  --subtitle "[![](https://gitlab.com/jrdasm/ezchlog/badges/master/coverage.svg)](https://gitlab.com/jrdasm/ezchlog/-/commits/master)" \
  1.1.0
$ cat CHANGELOG.md
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.1.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [1.1.0] – 2025-11-07
[1.1.0]: https://gitlab.com/jrdasm/ezchlog/-/compare/v1.0.2...v1.1.0
[![](https://gitlab.com/jrdasm/ezchlog/badges/master/coverage.svg)](https://gitlab.com/jrdasm/ezchlog/-/commits/master)

### Fixed
- Fix example API (142)

### Changed
- New url for example API

Configuration

The following configuration parameters could be specified as environment variables or in a .ezchlog.toml file (or pyproject.toml file for the python version).

  • EZCHLOG_EDITOR default to EDITOR or vim
  • EZCHLOG_LOG_DIR default to _CHANGELOGS
  • EZCHLOG_LOG_FILE default to CHANGELOG.md
  • EZCHLOG_CATEGORY_LIST default to Security,Fixed,Changed,Added,Removed,Deprecated
  • EZCHLOG_CATEGORY_DEFAULT default to Changed
  • EZCHLOG_DEFAULT_CHANGELOG default to
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.1.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
  • EZCHLOG_WITH_DATE default to False
  • EZCHLOG_NO_GIT default to False
  • EZCHLOG_BRANCH_FORMAT default to %{ref}%{sep}%{name}, allowed variables: ref, cat, name, sep
  • EZCHLOG_BRANCH_SEPARATOR default to _
  • EZCHLOG_BRANCH_LOWERCASE_FOR default to cat,name, allowed variables: ref, cat, name

For .ezchlog.toml or pyproject.toml config key, use the environment variable name in lowercase without the EZCHLOG prefix, for instance log_dir or category_list keys.

For pyproject.toml, the config resides in the tool.ezchlog table.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ezchlog-1.2.0.tar.gz (15.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ezchlog-1.2.0-py3-none-any.whl (12.9 kB view details)

Uploaded Python 3

File details

Details for the file ezchlog-1.2.0.tar.gz.

File metadata

  • Download URL: ezchlog-1.2.0.tar.gz
  • Upload date:
  • Size: 15.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Alpine Linux","version":"3.22.2","id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for ezchlog-1.2.0.tar.gz
Algorithm Hash digest
SHA256 e9be529d298e0943e3b10c99721e60955d39a418366f474d56c176ccf59b8270
MD5 3092c9ec6f627c2556b0e55b4242a2cc
BLAKE2b-256 902ccb5665ae753e6b1e1f1687c9695bd7c86328f29616e7b962976ca74f6754

See more details on using hashes here.

File details

Details for the file ezchlog-1.2.0-py3-none-any.whl.

File metadata

  • Download URL: ezchlog-1.2.0-py3-none-any.whl
  • Upload date:
  • Size: 12.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Alpine Linux","version":"3.22.2","id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for ezchlog-1.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4438ab6656288bdfc93c1f7748942ad7ae6048253f10effaf6e5bad8f7d652fd
MD5 497f0d44e3d5ea8c8f33db4c7fded5c3
BLAKE2b-256 0b265f274b5e6e1e23ba081d289e5cefb9cd947fc483e9d4a7452f7e7bb50df3

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page