Line | |
---|
1 | ================ |
---|
2 | Releasing Blosc |
---|
3 | ================ |
---|
4 | |
---|
5 | :Author: Francesc Alted |
---|
6 | :Contact: [email protected] |
---|
7 | :Date: 2014-01-15 |
---|
8 | |
---|
9 | |
---|
10 | Preliminaries |
---|
11 | ------------- |
---|
12 | |
---|
13 | - Make sure that ``RELEASE_NOTES.rst`` and ``ANNOUNCE.rst`` are up to |
---|
14 | date with the latest news in the release. |
---|
15 | |
---|
16 | - Check that *VERSION* symbols in blosc/blosc.h contains the correct info. |
---|
17 | |
---|
18 | - Commit the changes:: |
---|
19 | |
---|
20 | $ git commit -a -m"Getting ready for X.Y.Z release" |
---|
21 | |
---|
22 | |
---|
23 | Testing |
---|
24 | ------- |
---|
25 | |
---|
26 | Create a new build/ directory, change into it and issue:: |
---|
27 | |
---|
28 | $ cmake .. |
---|
29 | $ cmake --build . |
---|
30 | $ ctest |
---|
31 | |
---|
32 | To actually test Blosc the hard way, look at the end of: |
---|
33 | |
---|
34 | http://blosc.org/synthetic-benchmarks.html |
---|
35 | |
---|
36 | where instructions on how to intensively test (and benchmark) Blosc |
---|
37 | are given. |
---|
38 | |
---|
39 | |
---|
40 | Tagging |
---|
41 | ------- |
---|
42 | |
---|
43 | - Create a tag ``X.Y.Z`` from ``master``. Use the next message:: |
---|
44 | |
---|
45 | $ git tag -a vX.Y.Z -m "Tagging version X.Y.Z" |
---|
46 | |
---|
47 | - Push the tag to the github repo:: |
---|
48 | |
---|
49 | $ git push --tags |
---|
50 | |
---|
51 | |
---|
52 | Announcing |
---|
53 | ---------- |
---|
54 | |
---|
55 | - Send an announcement to the blosc, pytables-dev, bcolz and |
---|
56 | comp.compression lists. Use the ``ANNOUNCE.rst`` file as skeleton |
---|
57 | (possibly as the definitive version). |
---|
58 | |
---|
59 | |
---|
60 | Post-release actions |
---|
61 | -------------------- |
---|
62 | |
---|
63 | - Edit *VERSION* symbols in blosc/blosc.h in master to increment the |
---|
64 | version to the next minor one (i.e. X.Y.Z --> X.Y.(Z+1).dev). |
---|
65 | |
---|
66 | - Create new headers for adding new features in ``RELEASE_NOTES.rst`` |
---|
67 | and add this place-holder instead: |
---|
68 | |
---|
69 | #XXX version-specific blurb XXX# |
---|
70 | |
---|
71 | - Commit the changes:: |
---|
72 | |
---|
73 | $ git commit -a -m"Post X.Y.Z release actions done" |
---|
74 | $ git push |
---|
75 | |
---|
76 | |
---|
77 | That's all folks! |
---|
78 | |
---|
79 | |
---|
80 | .. Local Variables: |
---|
81 | .. mode: rst |
---|
82 | .. coding: utf-8 |
---|
83 | .. fill-column: 70 |
---|
84 | .. End: |
---|
Note: See
TracBrowser
for help on using the repository browser.