diff options
Diffstat (limited to 'doc/RELEASING')
-rw-r--r-- | doc/RELEASING | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/doc/RELEASING b/doc/RELEASING deleted file mode 100644 index 30c81cc..0000000 --- a/doc/RELEASING +++ /dev/null | |||
@@ -1,39 +0,0 @@ | |||
1 | NOTES ON RELEASING NEW VERSION OF MONITORING-PLUGINS | ||
2 | |||
3 | *** Pre-release | ||
4 | git pull | ||
5 | . tools/devmode, if feeling adventurous | ||
6 | check compilation, check tinderbox screens | ||
7 | |||
8 | *** Prepare and commit files | ||
9 | Update NEWS file | ||
10 | Update AUTHORS if new members | ||
11 | Update configure.ac and NP-VERSION-GEN with version | ||
12 | commit NEWS configure.ac NP-VERSION-GEN | ||
13 | |||
14 | *** Create new annotated tag | ||
15 | git tag -a v2.1.1 -m v2.1.1 | ||
16 | |||
17 | *** Push the code and tag to origin | ||
18 | git push origin master | ||
19 | git push origin v2.1.1 | ||
20 | |||
21 | *** Checkout new version | ||
22 | rm -fr /tmp/monitoringplug | ||
23 | # If you need to checkout the tag, don't forget to "checkout master" later to | ||
24 | # get back to your development branch: | ||
25 | git checkout tags/v2.1.1 | ||
26 | # Beware: the trailing slash of --prefix is REQUIRED | ||
27 | git checkout-index --prefix=/tmp/monitoringplug/ -a | ||
28 | |||
29 | *** Build the tarball | ||
30 | cd /tmp/monitoringplug | ||
31 | tools/setup | ||
32 | ./configure | ||
33 | make dist | ||
34 | |||
35 | *** Upload generated tarball to our Project Site | ||
36 | |||
37 | *** Announce new release | ||
38 | Send email to help, announce with the news text | ||
39 | Add a news item to https://monitoring-plugins.org | ||