Skip to main content

check that changelog conforms to 'Keep A Changelog' style

Project description

check-changelog

pkg - version pkg - python versions pkg - license


The project's aims are:

The supported changelog style is Keep A Changelog style with these additions:

  • allow changelog notes

    # Changelog
    Changelog notes
    
    ## [Unreleased]
    
  • allow release notes (Common Changelog addition)

    ## [1.0.0] - 2023-05-05
    Release notes
    
    ### Added
     - add feature ...
    
  • allow custom footer to separate tech stuff from changelog content. Useful for legal notes, text used by other scripts, HTML comments, etc

    -----
    Linter will ignore this section.
    <!--- message for some script -->
    [my site]: http://mysite.com
    

Installation

pip install check-changelog

Usage

From command line

Check changelog style

check-changelog --check=yes

Ensure git tags are documented in a changelog

check-changelog --tags=history

Add Unreleased section to a changelog, create a new changelog if needed

check-changelog --release=new

Create release 3.3.3 from current Unreleased section

check-changelog --release="3.3.3"
--- CHANGELOG.md
+++ CHANGELOG.md
@@ -2,6 +2,8 @@

 ## [Unreleased]

+## [3.3.3] - 2023-07-17
+
 ### Changed

  - some change
@@ -20,6 +22,7 @@
 ## [0.1.0] - 2023-07-11

 [Unreleased]: https://github.com/aanatoly/check-changelog
+[3.3.3]: https://github.com/aanatoly/check-changelog/releases/tag/3.3.3
 [0.3.0]: https://github.com/aanatoly/check-changelog/releases/tag/0.3.0
 [0.2.1]: https://github.com/aanatoly/check-changelog/releases/tag/0.2.1

pre-commit hook

As a pre-commit hook. Add this section to your .pre-commit-config.yaml

- repo: https://github.com/aanatoly/check-changelog
  rev: '0.4.0'
  hooks:
    - id: check-changelog

git pre-push hook

As a git pre-push hook, check-changelog can block git from pushing tags without changelog. To install it that way, run the following commmands

# backup existing hook
mv .git/hooks/pre-push  .git/hooks/pre-push.bak
# install new hook
check-changelog --install=yes

and let's test it

git tag -a -m "abc.7.7" "abc.7.7"
git tag -a -m "abc.7.8" "abc.7.8"
git push --tags --dry-run

# check-changelog :: INFO  :: file CHANGELOG.md: starting
# check-changelog :: INFO  :: task check tags documentation: starting
# check-changelog :: INFO  :: scan 2 tags from 'hook' source
# check-changelog :: ERROR :: tag 'abc.7.7' not found
# check-changelog :: ERROR :: tag 'abc.7.8' not found
# check-changelog :: ERROR :: task check tags documentation: fail
# check-changelog :: ERROR :: file CHANGELOG.md: fail

git tag -d "abc.7.7"
git tag -d "abc.7.8"

Alternatives

check-changelog is a minimalistic tool by design. It checks the Changelog structure and does nothing else.

If you are looking for more, check python-kacl. It is a feature-rich tool capable of linting, fixing errors, and automating Changelog maintenance.

Development

See development doc

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

check_changelog-0.4.0-py3-none-any.whl (12.0 kB view details)

Uploaded Python 3

File details

Details for the file check_changelog-0.4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for check_changelog-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 8c9c3fe47366d3bee477c67779839a91161438aada678241999f6d1f4a7a5b16
MD5 0d547fba35062c7828d4a7b0aa1bdc50
BLAKE2b-256 7a6242cb7872c0ce6c08aaa79a8b54e0610fb394a43720b576bd49ec68a6696e

See more details on using hashes here.

Provenance

Supported by

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