disperse is a simple script that I use to create releases for some of the free software packages I maintain. It's meant to streamline the releasing process, reducing the human effort involved in creating a release as well as the likelihood of a brown-bag release.
It can do one or more of the following:
After the release has completed, it can also update e.g. NEWS for the next release.
Disperse was previously known as "releaser".
To a large extent, disperse will automatically figure out what needs to happen. It can discover the projects you maintain on pypi by reading ~/.pypirc for your username and enumerating them.
It can parse and modify setup.py and Cargo.toml files.
It uses a configuration file (disperse.conf) for anything that can not be autodetected, and which lives in the repository root.
For example:
```
tagformat: "dulwich-%(release)s" newspath: "NEWS"
```
disperse has various subcommands. The core ones are:
The easiest way to run disperse is to use the docker image at
ghcr.io/jelmer/disperse
. You'll need to make sure that appropriate SSH
and PGP keys are available.
The author regularly runs disperse inside of a Kubernetes cronjob.
In the future, I would like it to: