Skip to main content

conventional-semver is a Conventional Commits processor designed to emit a SEMVER as part of a build pipeline.

Usage

Usage:
        conventional-semver [options] [repo-path]

Options:
        --help              print usage, then exit.
        --version           print version info, then exit.
        --verbose           enable verbose (debug) output.
        --commit <hash>     indicates which commit hash to start changelog from.
        --tag <name>        indicates which tag to start changelog from.
        --changelog <file>  overrides the name of the file the changelog is written to, otherwise changelog.md is the default.
        --no-semver         disable SEMVER output to STDOUT.
        --from <version>    set the baseline semver as a single `X.Y.Z` value (e.g. `--from 1.4.0`).
        --major             SEMVER Major component will start with this value, default is 0.
        --minor             SEMVER Minor component will start with this value, default is 0.
        --patch             SEMVER Patch component will start with this value, default is 0.
        --git-path <path>   overrides the path to `git` tool, otherwise `git` must be in environment PATH.

Parameters:
        repo-path           the path of the git repository to process, if not specified defaults to working directory.

Generating SEMVER

When you run conventional-semver from within a git repository, it will automatically process the log and emit a semver.

Example:

$ conventional-semver
0.1.23

This allows you to pull a semver into an Environment Variable, evaluate it as an Argument to another tool, or pipe it to a file/stream for additional processing:

$ export SEMVER=$(conventional-semver)
$ echo $SEMVER
0.1.23

Override Baseline SEMVER

Projects adopting Conventional Commits may need to customize the baseline SEMVER, rather than starting from 0.0.0. This can be done in two ways:

Using --from — supply a single semver string:

$ conventional-semver --from 1.4.0
1.4.3

Using --major, --minor, and --patch — specify each component individually:

$ conventional-semver --from 1.4.0
1.4.3

$ conventional-semver --major 1 --minor 4 --patch 0
1.4.3

Only --from or the individual --major/--minor/--patch flags may be used; when both are supplied, --from takes precedence.

SEMVER Configuration

When run without any command-line arguments a default set of settings are used which implement a standard Conventional Commits behavior.

To customize behavior a configuration file may be created. This file can be passed in using a --config argument, or, placed into one of the following well-known locations (and in the following order):

  • ./conventional-semver.conf (working directory.)
  • ~/.config/conventional-semver/settings.conf (user profile .config directory.)
  • /etc/conventional-semver/settings.conf (root /etc directory.)

The configuration file should have the following format:

# lines starting with hash (#) are comments
# empty lines, like the following, are ignored

# conventional commit "type" mappings are
# configured in a [types] section. the following
# mirrors the default configuration:
[types]
.*!=major
feat.*=minor
.*=patch

# conventional commit "footer" mappings are
# configured in a [footers] section. the following
# mirrors the default configuration:
[footers]
BREAKING[\-\.]CHANGE=major

# in each of the above sections, each line
# represents a key-value pair. the key is a regex
# and the value is a component type to be
# incremented if the regex is a match.

There is a sample configuration file located in this repo as config/conventional-semver.conf which contains additional comments and explanations, you can customize it to fit your needs and then place it at one of the well-known locations mentioned above.

Generating CHANGELOG

To generate a CHANGELOG you specify the --changelog [filename] switch, this takes an optional filename argument. If no filename is provided a default filename of ./CHANGELOG is used to emit a file into the current working directory.

Example:

$ conventional-semver --changelog
$ conventional-semver --changelog CHANGELOG.md

CHANGELOG Templates

The CHANGELOG output is defined as a single template, this is meant to provide enough flexibility that you could emit templates in various structured formats such as XML, JSON, Markdown, reStructuredText, etc.

The default template is built-in, and is designed to produce a file that is markdown-friendly.

To specify a custom template, supply an additional --changelog-template <template path> argument that indicates where the template can be found:

$ conventional-semver --changelog --template ./templates/template_name.j2
$ conventional-semver --changelog ./CHANGELOG.rst --template ./templates/template_name.j2

Jinja2

Templates are Jinja2-based, offering a powerful feature set and a syntax familiar to the Python community.

Variables

Templates are provided a data dict having the following structure:

{
    "name": <derived from working directory basename>,
    "semver": <semver of most recent commit>,
    "date": <date of most recent commit>,
    "hash": <git hash of most recent commit>,
    "versions": [
        {
            "semver": <semver of commit>,
            "commits": [
                {
                    "date": <commit date>,
                    "hash": <commit hash>,
                    "message": <original commit message>,
                    "type": <the `type` parsed from commit message>,
                    "scope": <the `scope` parsed from commit message>,
                    "header": <the first line parsed from the commit message, sans `type` and `scope`>,
                    "body": <optional, the `body` lines parsed from the commit message, if defined>,
                    "footers": <optional, the `trailing` lines parsed from the commit message, if defined>
                }
            ]
        }
    ]
}

For each SEMVER increment a "versions" entry is provided. A single semver increment may be the result of multiple commits, and so "commits" is an array of all commits related to the semver increment. Typically, this will be a 1-to-1 relationship, but it depends on the practices and patterns of the developer/organization.

Example

The built-in template looks approximately like this:

        {% for version in versions %}
        #### {{ version.semver }}
        {% for commit in version.commits %}
        - {{ commit.type }}({{ commit.scope }}): {{ commit.header }}{% if commit.body is defined %}
        {{ commit.body }}
        {% if commit.footers is defined %}
        > {{ commit.footers }}{% endif %}{% else %}
        {% endif %}
        {%- endfor -%}{%- endfor -%}

Download files

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

Source Distribution

py_conventional_semver-1.3.2.tar.gz (22.7 kB view details)

Uploaded Source

Built Distribution

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

py_conventional_semver-1.3.2-py3-none-any.whl (27.5 kB view details)

Uploaded Python 3

File details

Details for the file py_conventional_semver-1.3.2.tar.gz.

File metadata

  • Download URL: py_conventional_semver-1.3.2.tar.gz
  • Upload date:
  • Size: 22.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15+

File hashes

Hashes for py_conventional_semver-1.3.2.tar.gz
Algorithm Hash digest
SHA256 a2d3785228ae3c249051722c0de8be8342ee23640b50651476324a8a09ae0b33
MD5 1869f145ebd02180190bd0da29ce4337
BLAKE2b-256 8b41ae137750264116924ed3ac411ae961b14c46bef711a35e4f77282c013b88

See more details on using hashes here.

File details

Details for the file py_conventional_semver-1.3.2-py3-none-any.whl.

File metadata

File hashes

Hashes for py_conventional_semver-1.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 82bfd017b1c0dab193fb2cb162082c991f4d81dbdef10f5429f9f3227a84b0e7
MD5 1c882960367c4ac07210b939d2ba969d
BLAKE2b-256 744f3a129fe93f393b716b43cd72a5b2685dce1149ac71dcc4fd1cf38b6756a5

See more details on using hashes here.

Release history Release notifications | RSS feed

1.3.4

2 files

This release

1.3.2 This release

2 files

1.3.1

2 files

1.0.5

2 files

1.0.4

2 files

1.0.3

2 files

1.0.2

1 file

1.0.1

2 files

1.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page