## Creating a release 1. Write an appropriate changelog (hint, check the [milestone](https://github.com/euank/pazi/milestones) 1. Bump the version in Cargo.toml 1. Bump the version in tests: ```sh $ cd tests $ cargo update -p pazi ``` 1. Create PR with the release commit with the message 'Release vX.Y.Z'. Optionally include `:tada:` and `:zap:` to taste. 1. Create a release build of pazi: ```sh $ PR_NUM=123 # the github pr number that includes the release commit $ RELEASE_COMMIT=abcdef123 # the commit hash of the release commit $ V=x.y.z $ mkdir out-v$V $ docker pull rust:latest $ docker run -i -v $(pwd)/out-v${V}:/out rust:latest <