Gitflow release tool
Project description
lase - Gitflow release tool
Installing
pip install lase
Using
Prerequisites:
- Git-based project with
master
anddevelop
branches present, and Maven-style version number in theVERSION
file
See lase --help
for the list of all options.
Starting a release of your project with remote operation enabled
cd /path/to/project/git/repo
lase --remote origin start
The above command will, and create the release/X.Y.Z
release branch where X.Y.Z
is the version
being released, bumping the version in the VERSION
file on the develop
branch at the same time.
After reviewing the diff between the release and master
branches proceed to the finish step below.
Finishing a release of a your project with remote operation enabled
cd /path/to/project/git/repo
lase --remote origin finish
Developing
Prerequisites:
- Python 3
- pipenv
Initialize a virtualenv with dev dependencies installed:
make develop
Running unit-tests
make test
Running E2E tests
Prerequisites:
make e2e-test
Starting a release
make release-start
Finishing a release
make release-finish
Building and publishing the source distribution for the version X.Y.Z:
git checkout X.Y.Z
make publish
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
lase-0.2.4.tar.gz
(5.4 kB
view hashes)