1 | Instructions for releasing ERFA
|
---|
2 | ===============================
|
---|
3 |
|
---|
4 | * Clone the ERFA repository from github (if you haven't already done so),
|
---|
5 | and change to the ERFA directory.
|
---|
6 |
|
---|
7 | * Make sure you are on the "master" branch from the "liberfa" github
|
---|
8 | repository and have the latest version (if you have a fresh clone, this
|
---|
9 | should already be the case).
|
---|
10 |
|
---|
11 | * If a new version of SOFA exists, run `sofa_deriver.py` from the `erfa-fetch
|
---|
12 | repository`_ in its own directory. That will create a directory called `erfa`
|
---|
13 | inside the `erfa-fetch` directory, and you should copy its contents to the
|
---|
14 | `src` directory of `erfa`. Use ``git diff`` in `erfa` to inspect the changes,
|
---|
15 | and then commit and push them to github.
|
---|
16 |
|
---|
17 | * Update the version number in the `AC_INIT` macro of `configure.ac` to
|
---|
18 | the version number you are about to release, and also update the version
|
---|
19 | mentioned in `README.rst`. Follow the instructions in
|
---|
20 | `Version numbering` below.
|
---|
21 |
|
---|
22 | * Update the version info of the shared library in the `ERFA_LIB_VERSION_INFO`
|
---|
23 | macro of `configure.ac`. Follow the instructions in `Version numbering` below.
|
---|
24 |
|
---|
25 | * Commit these changes using ``git commit``, with a commit message like
|
---|
26 | ``Preparing release v0.0.1``.
|
---|
27 |
|
---|
28 | * Run `./bootstrap.sh`: you need `automake`, `autoconf` and `libtool`
|
---|
29 | installed. If no errors appear, this will create a new `./configure`
|
---|
30 | file.
|
---|
31 |
|
---|
32 | * Run ``./configure``, which should create a `Makefile` in the top level
|
---|
33 | directory and in ./src
|
---|
34 |
|
---|
35 | * Run ``make check``, which will build the library and run the tests -
|
---|
36 | make sure they pass before proceeding.
|
---|
37 |
|
---|
38 | * Run ``make distcheck``: this creates the distribution tarball,
|
---|
39 | unpackages it and runs the check inside the untarred directory.
|
---|
40 | The resulting tarball will be named e.g., `erfa-0.0.1.tar.gz` and
|
---|
41 | will be placed in the working directory.
|
---|
42 |
|
---|
43 | * Tag the current commit with the version number. A signed tag is preferred if you have an a signing key (e.g., do ``git tag -s v0.0.1``).
|
---|
44 |
|
---|
45 | * Push up your changes and the new tag to github:
|
---|
46 | ``git push --tags origin master``. (The command here assumes the git remote
|
---|
47 | "origin" points to the "liberfa/erfa" repository. If not, substitute the
|
---|
48 | appropriate name.)
|
---|
49 |
|
---|
50 | * Go to the "liberfa/erfa" repository for the github page, and click on the
|
---|
51 | "releases" button, and then the release corresponding to the tag you just
|
---|
52 | made.
|
---|
53 |
|
---|
54 | * Click on the "Draft release notes or downloads" button (or it might be "Edit release"). Put the version number as
|
---|
55 | the title (e.g., ``v0.0.1``)and for the description put
|
---|
56 | ``See `README.rst` for release notes.``
|
---|
57 |
|
---|
58 | * Upload the tarball you created (e.g., `erfa-0.0.1.tar.gz`) by dropping it
|
---|
59 | in the area that says "Attach binaries for this release by dropping them
|
---|
60 | here."
|
---|
61 |
|
---|
62 | * Click the "Publish release" button.
|
---|
63 |
|
---|
64 | * Update the release listing on Github Pages to include this release:
|
---|
65 | Do ``git checkout gh-pages``, add a new ``<li>...</li>`` entry for the
|
---|
66 | release in `index.html`, do ``git commit``, and then
|
---|
67 | ``git push origin gh-pages``.
|
---|
68 |
|
---|
69 | Version numbering
|
---|
70 | =================
|
---|
71 |
|
---|
72 | ERFA needs to provide two different version numbers. You need to update both.
|
---|
73 | The first is the
|
---|
74 | **package version number** or **version number** proper. ERFA uses
|
---|
75 | `semantic versioning <http://semver.org/>`_ to create this number.
|
---|
76 | For more on this choice, see
|
---|
77 | `liberfa/erfa#6 <https://github.com/liberfa/erfa/issues/6>`_.
|
---|
78 |
|
---|
79 | The second number is `shared library version info`. When a program has been
|
---|
80 | linked with the ERFA shared library, the dynamic linker checks the version
|
---|
81 | info of the library requested by the program with those of the libraries
|
---|
82 | present if the system. This version info is important to binary distributions
|
---|
83 | (such as Linux distributions). ERFA uses `libtool versioning <http://www.gnu.org/software/libtool/manual/html_node/Libtool-versioning.html>`_.
|
---|
84 |
|
---|
85 |
|
---|
86 | Package version number
|
---|
87 | ----------------------
|
---|
88 |
|
---|
89 | Semantic versioning dictates how to change the version number according to
|
---|
90 | changes to the API of the library. In the case of ERFA the API is:
|
---|
91 |
|
---|
92 | * The public C macros defined in erfam.h
|
---|
93 | * The names, return types, number of arguments and types of the functions in erfa.h
|
---|
94 |
|
---|
95 | To update the package version, the release manager has to check the relevant
|
---|
96 | information about the release, such as:
|
---|
97 |
|
---|
98 | * upstream SOFA documentation in http://www.iausofa.org/current_changes.html
|
---|
99 | * relevant bug reports in the github project page
|
---|
100 |
|
---|
101 | If the version is given in the form MAJOR.MINOR.PATCH, then
|
---|
102 |
|
---|
103 | * if there is a backwards incompatible change (function removed, types of
|
---|
104 | arguments altered, macros renamed...) then increase MAJOR by one and set
|
---|
105 | the others to zero.
|
---|
106 | * else if there is backwards compatible change (new function added or
|
---|
107 | new macro added) then do not change MAJOR, increase MINOR by one and
|
---|
108 | set PATCH to zero.
|
---|
109 | * else
|
---|
110 | you are either fixing a bug or making other improvements. Increase
|
---|
111 | patch by one and do not change the others.
|
---|
112 |
|
---|
113 | Change the version number in the `AC_INIT` macro and in `README.rst`
|
---|
114 |
|
---|
115 | Shared library version info
|
---|
116 | ---------------------------
|
---|
117 |
|
---|
118 | For the shared library version info, we are only interested in a subset of
|
---|
119 | the API, the **interfaces of the shared library**. As the C macros are
|
---|
120 | interpolated away at compile time, the interfaces in the ERFA
|
---|
121 | shared library are:
|
---|
122 |
|
---|
123 | * The names, return types, number of arguments and types of the functions
|
---|
124 |
|
---|
125 | Again, the release manager has to review the relevant information:
|
---|
126 |
|
---|
127 | * upstream SOFA documentation in http://www.iausofa.org/current_changes.html
|
---|
128 | * relevant bug reports in the github project page
|
---|
129 |
|
---|
130 | The shared library version info is stored in three numbers called *current*, *revision* and *age*. These numbers appear in the macro `ERFA_LIB_VERSION_INFO` in
|
---|
131 | the mentioned order.
|
---|
132 |
|
---|
133 | If the version is given in the form CURRENT,REVISION,AGE then
|
---|
134 |
|
---|
135 | * if there is a backwards incompatible change (function removed, types of
|
---|
136 | arguments altered...) then increase CURRENT by one and set
|
---|
137 | the others to zero (c,r,a -> c+1,0,0).
|
---|
138 | * else if there is backwards compatible change (new function added)
|
---|
139 | then increase both CURRENT and AGE by one, set REVISON to zero
|
---|
140 | (c,r,a -> c+1,0,a+1).
|
---|
141 | * else if the library code has been modified at all
|
---|
142 | then increase REVISION by one (c,r,a -> c,r+1,a)
|
---|
143 | * else
|
---|
144 | do not change the version info (c,r,a -> c,r,a)
|
---|
145 |
|
---|
146 | Change the verion info in `ERFA_LIB_VERSION_INFO`
|
---|
147 |
|
---|
148 | Examples
|
---|
149 | ---------
|
---|
150 | We start with ERFA version 1.0.0 and library version info 0,0,0
|
---|
151 |
|
---|
152 | * SOFA makes a new release. A function is added and two functions change their
|
---|
153 | arguments. This is a backawars incompatible change, so the new package will
|
---|
154 | have version 2.0.0 and the shared library version info will be 1,0,0
|
---|
155 |
|
---|
156 | * We forgot to add README.rst to the release. We make a new one. The change
|
---|
157 | is a bugfix (no API changes), the new release will be 2.0.1. The shared
|
---|
158 | library version is not modified (no changes in the library source code).
|
---|
159 |
|
---|
160 | * SOFA makes a new release. They just add a new function. The new package
|
---|
161 | version will be 2.1.0. The shared library info will be 2,0,1 (both current
|
---|
162 | and age are incremented).
|
---|
163 |
|
---|
164 | * SOFA makes a new relase fixing some bugs in the code without changing the
|
---|
165 | API. New package version is 2.1.1. The shared library version is 2,1,1
|
---|
166 |
|
---|
167 | * A contributor finds a bug in ERFA. The fix doesn't change the API. New
|
---|
168 | package version is 2.1.2. The shared library version is 2,2,1
|
---|
169 |
|
---|
170 | * SOFA makes a new release incorporating the bug fix and adding new functions.
|
---|
171 | The new package version is 2.2.0. The shared library version is 3,0,2
|
---|
172 |
|
---|
173 | * SOFA makes a new release removing functions. This is a backawars
|
---|
174 | incompatible change, so the new package will
|
---|
175 | have version 3.0.0 and the shared library version info will be 4,0,0
|
---|
176 |
|
---|
177 | .. _erfa-fetch repository: https://github.com/liberfa/erfa-fetch
|
---|