Quickstart
Bumper integrates seamlessly into your existing development workflow and CI/CD process.
Here’s how to set it up in a repository with a single package:
- Initialize your project with
bumper init. - Create a release group with
bumper create <name>. - Integrate it into your CI/CD process.
That’s it for the setup phase! Now we move to the bump phase. Any time you make an interesting change that needs to be released:
- Create a bump with
bumper bumpand include it with a pull request (you can also commit it directly if you practice trunk-based development).
Time goes on and you accumulate bumps…
When you’re ready to cut a release:
- Run
bumper commitwhich updates the release group version and the changelog. - Merge any changes into your default git branch.
- Rinse and repeat!