diff options
Diffstat (limited to 'doc/RELEASING.md')
| -rw-r--r-- | doc/RELEASING.md | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/doc/RELEASING.md b/doc/RELEASING.md new file mode 100644 index 00000000..432b1da1 --- /dev/null +++ b/doc/RELEASING.md | |||
| @@ -0,0 +1,98 @@ | |||
| 1 | Releasing a New Monitoring Plugins Version | ||
| 2 | ========================================== | ||
| 3 | |||
| 4 | Throughout this document, it is assumed that the current Monitoring | ||
| 5 | Plugins version is 2.3.3, and that we're about to publish version 2.4. | ||
| 6 | It is also assumed that the official repository on GitHub is tracked | ||
| 7 | using the remote name `monitoring-plugins` (rather than `origin`). | ||
| 8 | |||
| 9 | Before you start | ||
| 10 | ---------------- | ||
| 11 | |||
| 12 | - Check Github Actions status. | ||
| 13 | - Update local Git repository to the current `master` tip. For a | ||
| 14 | maintenance release (e.g., version 2.3.4), update to the current | ||
| 15 | `maint-2.3` tip, instead. | ||
| 16 | |||
| 17 | Prepare and commit files | ||
| 18 | ------------------------ | ||
| 19 | |||
| 20 | - Update `configure.ac` and `NP-VERSION-GEN` with new version. | ||
| 21 | - Update `NEWS` from `git log --reverse v2.3.3..` output, and specify | ||
| 22 | the release version/date. | ||
| 23 | - Update `AUTHORS` if there are new team members. | ||
| 24 | - Update `THANKS.in` using `tools/update-thanks`. | ||
| 25 | - Commit the results: | ||
| 26 | |||
| 27 | git commit configure.ac NP-VERSION-GEN NEWS AUTHORS THANKS.in | ||
| 28 | |||
| 29 | Create annotated tag | ||
| 30 | -------------------- | ||
| 31 | |||
| 32 | git tag -a -m 'Monitoring Plugins 2.4' v2.4 | ||
| 33 | |||
| 34 | Push the code and tag to GitHub | ||
| 35 | ------------------------------- | ||
| 36 | |||
| 37 | git push monitoring-plugins master | ||
| 38 | git push monitoring-plugins v2.4 | ||
| 39 | |||
| 40 | Create new maintenance branch | ||
| 41 | ----------------------------- | ||
| 42 | |||
| 43 | _Only necessary when creating a feature release._ | ||
| 44 | |||
| 45 | git checkout -b maint-2.4 v2.4 | ||
| 46 | git push -u monitoring-plugins maint-2.4 | ||
| 47 | |||
| 48 | Checkout new version | ||
| 49 | -------------------- | ||
| 50 | |||
| 51 | rm -rf /tmp/plugins | ||
| 52 | git archive --prefix=tmp/plugins/ v2.4 | (cd /; tar -xf -) | ||
| 53 | |||
| 54 | Build the tarball | ||
| 55 | ----------------- | ||
| 56 | |||
| 57 | cd /tmp/plugins | ||
| 58 | tools/setup # requires docbook to be installed | ||
| 59 | ./configure | ||
| 60 | make dist | ||
| 61 | |||
| 62 | Upload tarball to web site | ||
| 63 | -------------------------- | ||
| 64 | |||
| 65 | scp monitoring-plugins-2.4.tar.gz \ | ||
| 66 | plugins@orwell.monitoring-plugins.org:web/download/ | ||
| 67 | |||
| 68 | Generate SHA1 checksum file on web site | ||
| 69 | --------------------------------------- | ||
| 70 | |||
| 71 | ssh plugins@orwell.monitoring-plugins.org \ | ||
| 72 | '(cd web/download; $HOME/bin/create-checksum monitoring-plugins-2.4.tar.gz)' | ||
| 73 | |||
| 74 | Announce new release | ||
| 75 | -------------------- | ||
| 76 | |||
| 77 | - In the site.git repository: | ||
| 78 | |||
| 79 | - Create `web/input/news/release-2-4.md`. | ||
| 80 | - Update the `plugins_release` version in `web/macros.py`. | ||
| 81 | - Commit and push the result: | ||
| 82 | |||
| 83 | git add web/input/news/release-2-4.md | ||
| 84 | git commit web/input/news/release-2-4.md web/macros.py | ||
| 85 | git push origin master | ||
| 86 | |||
| 87 | - Post an announcement on (at least) the following mailing lists: | ||
| 88 | |||
| 89 | - <announce@monitoring-plugins.org> | ||
| 90 | - <help@monitoring-plugins.org> (set `Reply-To:` to this one) | ||
| 91 | |||
| 92 | - Ask the social media department to announce the release on Twitter :-) | ||
| 93 | |||
| 94 | If you want to mention the number of contributors in the announcement: | ||
| 95 | |||
| 96 | git shortlog -s v2.3.3..v2.4 | wc -l | ||
| 97 | |||
| 98 | <!-- vim:set filetype=markdown textwidth=72: --> | ||
