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.
Development
Install this module and the development dependencies:
python setup.py develop pip install -r requirements/dev.txt
Testing
To test your modifications locally:
tox
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-4.3.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | b625de4c941fe578c5756afb84f0379c1331b348fbf271d0ce013a93d2a9f80e |
|
MD5 | 163ffcaa8408dda3bea3207168a04f27 |
|
BLAKE2b-256 | 9ed45cf87cb97642836bfdcd6417bb8286eae72cdae8b3812aab36e95be4a293 |
Hashes for python_semantic_release-4.3.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 45a03b3872b2584df0b3380470be1b0c4af2afcbb70d624be997e77845db6171 |
|
MD5 | 0ce230c7d2cda3e91f579369b4c0994b |
|
BLAKE2b-256 | 9aadd50a05aa7a59117e2153231c0a79c551f903012c95ec59f86f64cc9ab165 |