Skip to main content

Setuptools extension to help generate change logs

Project description

This project is a setuptools extension which helps to generate change logs from fragments. This way of changelog management is conflict free, what is extremely helpful for PR/MR driven workflow.

Requirements

  • Python 2.7, 3.5+;

  • setuptools (31+, but the latest release is better);

  • Your project follows Semantic Versioning or uses it simplified (X.Y version) form;

Usage

  1. Add setuptools-changelog as development dependency to your project;

  2. Create changelog.d directory in your project root directory (where setup.py is located)

  3. Create there fragments files according the changes you made. Fragments files have the following format:

    {name}.{type}.{ext}

    Where:

    • name: fragment name. If it starts with a number and you have issue tracker specified, this number will turn into issue reference automatically. Otherwise there could be just some mnemonic name to simplify navigation.

    • type: fragment type. By default, the following types are available

      • Major changes:

        • epic: Massive epic change that completely changes underlying project platform. This could be a shift to completely new base library, framework, etc. Epic changes are very rare and are the reason for major release.

        • breaking: Breaking change means changes in the project public API which makes old code incompatible with them. Incompatibility means that things were removed or their behavior had changed.

      • Minor changes:

        • security: This is an important security fix. Users must update ASAP. If security fix causes breaking change, two separate changelog fragments should be issued.

        • deprecation: Deprecations are friendly warnings about upcoming breaking changes in the public API.

        • feature: New features brings something to project and they must be available for users via public API.

      • Patch changes:

        • bug: When something works in the way it’s not expected or supposed to we do a bug fix.

        • improvement: This could be speed optimizations, internals refactoring, making code more stable etc. Improvements are never changes the existed behaviour or public API.

        • build: Changes, related to project build routines, packaging, etc.

        • doc: Documentation updates, clarifications, typo fixes, etc.

        • test: Work around project testing, test suite, CI, etc.

        • misc: Misc changes which doesn’t suites any existed category. For instance, they could be announcements about project life: new committers, endorsements, etc.

    • ext: file extension. Currently, we support only rst one.

  4. You can always preview changelog via:

    python setup.py changelog
  5. Once you’ll be ready for release, you can update your changelog file like:

    python setup.py changelog --update=CHANGELOG.rst

    This command will prepend generated changelog to your file.

  6. Review your changelog file content and everything is fine commit it and remove fragments:

    git rm changelog.d/*
    git commit CHANGELOG.rst changelog.d/

Example configuration for setup.cfg using defaults:

[changelog]
changelog_fragments_path = changelog.d
major_changes_types =
    epic = Epic Changes
    breaking = Breaking Changes
    removal = Breaking Changes
minor_changes_types =
    security = Security Fixes
    deprecation = Deprecations
    feature = New Features
patch_changes_types =
    bug = Bug Fixes
    bugfix = Bug Fixes
    improvement = Improvements
    build = Build
    doc = Documentation
    test = Tests Suite
    misc = Miscellaneous

Automatic version generation

If your project follows Semantic Versioning strategy, you can achieve not just changelog generation, but also automatic version management depending on changes it has.

Integration with towncrier

This project was started because there are several reasons for me to not use towncrier for changelog management. But

Why have enemies, when you can have?

—King Arthur: Legend of the Sword

Instead, we can support fragments, made for towncrier with the following config:

[changelog]
changelog_fragments_path = changelog.d
major_changes_types =
    removal = Breaking Changes
minor_changes_types =
    feature = New Features
patch_changes_types =
    bugfix = Bug Fixes
    doc = Documentation
    misc = Miscellaneous
use_towncrier = true

And that’s it!

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

setuptools-changelog-1.0.0.tar.gz (24.0 kB view details)

Uploaded Source

Built Distribution

setuptools_changelog-1.0.0-py3-none-any.whl (8.1 kB view details)

Uploaded Python 3

File details

Details for the file setuptools-changelog-1.0.0.tar.gz.

File metadata

File hashes

Hashes for setuptools-changelog-1.0.0.tar.gz
Algorithm Hash digest
SHA256 eb73bdaf01bbd165853879044a20786947a1767549cb3d4875aed50200f013f9
MD5 ba427cb31eae70af838610fd3301e0be
BLAKE2b-256 147a1be1951a38845f88affa783698e7e60c7e5fe4d301d0d271af83fcb55581

See more details on using hashes here.

Provenance

File details

Details for the file setuptools_changelog-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for setuptools_changelog-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5c2c08d7c7840767409b3702c9c6af34ab5267bcbfa366a59ff29c4bf93b2018
MD5 0c5d6c4a4184b008f1a4b6484b70b274
BLAKE2b-256 f45a2106b49c1fe4843bb6d8a464d8c0e2b1cdf4f53558970396d687497a9d85

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