mirror of
https://github.com/munin-monitoring/muninlite.git
synced 2024-11-17 00:58:32 +01:00
30 lines
926 B
Markdown
30 lines
926 B
Markdown
# Release checklist
|
|
|
|
The following steps are required for a release:
|
|
|
|
1. update the `Changelog.md` file
|
|
2. execute the following commands:
|
|
```shell
|
|
new_version=2.0.0
|
|
echo "$new_version" >VERSION
|
|
git commit -m "Release $new_version" VERSION Changelog.md
|
|
git tag -s "$new_version" -m "$new_version"
|
|
make dist
|
|
```
|
|
3. push the commits (and the tag) to github:
|
|
```shell
|
|
git push
|
|
git push --tags
|
|
```
|
|
4. attach the locally generated release archive and the signature to the
|
|
[new release](https://github.com/munin-monitoring/muninlite/releases/)
|
|
|
|
|
|
## Downstream: OpenWrt
|
|
|
|
Update the
|
|
[release references](https://github.com/openwrt/packages/blob/master/admin/muninlite/Makefile)
|
|
in OpenWrt:
|
|
|
|
1. Update version number and sha256 of tar.gz ([example](https://github.com/openwrt/packages/pull/13717/commits/0f4db441b82a257252b775b1fee6de1737295bdc))
|
|
2. Open new pull request ([example](https://github.com/openwrt/packages/pull/13717))
|