Automatic semantic versioning for python projects
Project description
Automatic semantic versioning for python projects. This is an python implementation of the semantic-release for js by Stephan Bönnemann. If you find this topic interesting you should check out his talk from JSConf Budapest.
Install
pip install python-semantic-release
Usage
The general idea is to have some sort of tag in commit messages that indicates certain types of changes. If a commit message lack a tag it is ignored. Running release can be run locally or from a CI service.
Usage: semantic-release [OPTIONS] COMMAND Options: --major Force major version. --minor Force minor version. --patch Force patch version. --noop No-operations mode, finds the new version number without changing it. --post If used with the changelog command, the changelog will be posted to the release api. --retry Retry the same release, do not bump. --help Show this message and exit.
Commands
version - Create a new release. Will change the version, commit it and tag it.
publish - Runs version before pushing to git and uploading to pypi.
changelog - Generates the changelog for the next release.
Running commands from setup.py
Add the following to your setup.py and you will be able to run python setup.py <command> as you would semantic-release <command>.
try:
from semantic_release import setup_hook
setup_hook(sys.argv)
except ImportError:
pass
Configuration
Configuration belongs in semantic_release section of the setup.cfg file in your project. Details about configuration options can be found in the configuration documentation.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for python-semantic-release-3.11.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1cc1682ecf7d068ece1646671af75b8097c3e1f79ebcd6a776ef4effefe10089 |
|
MD5 | a4e1033d4629f88545bd09472c349deb |
|
BLAKE2b-256 | cdd04fd0672218ed5f2d23f2ea36206f1b6a98f7e126c9109789bbaaff54cc79 |
Hashes for python_semantic_release-3.11.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 619d031be96252d19e2c42223a54d0cd1029a5e42da7574980e19e25d1a61893 |
|
MD5 | 88c81dd90842e04edbaf83f034efed51 |
|
BLAKE2b-256 | f0795ec2a90717403a3bef7123de3f8ea869002cd51f27ffcb4181b9515746f4 |