2015-10-09 15:38:59 +02:00
|
|
|
|
|
|
|
Putting out a new release
|
|
|
|
-------------------------
|
|
|
|
|
2016-08-22 22:51:33 +02:00
|
|
|
Here are the steps that the maintainer should take when putting out a
|
|
|
|
new Tor release:
|
2015-10-09 15:38:59 +02:00
|
|
|
|
2016-03-28 22:07:19 +02:00
|
|
|
=== 0. Preliminaries
|
|
|
|
|
2016-03-29 16:57:01 +02:00
|
|
|
1. Get at least three of weasel/arma/Sebastian/Sina to put the new
|
2016-03-29 13:55:02 +02:00
|
|
|
version number in their approved versions list.
|
2016-03-28 22:07:19 +02:00
|
|
|
|
|
|
|
|
|
|
|
=== I. Make sure it works
|
|
|
|
|
2015-11-05 15:13:53 +01:00
|
|
|
1. Use it for a while, as a client, as a relay, as a hidden service,
|
|
|
|
and as a directory authority. See if it has any obvious bugs, and
|
2015-11-05 15:53:05 +01:00
|
|
|
resolve those.
|
|
|
|
|
2015-11-05 15:13:53 +01:00
|
|
|
As applicable, merge the `maint-X` branch into the `release-X` branch.
|
2015-10-09 15:38:59 +02:00
|
|
|
|
2016-03-28 22:07:19 +02:00
|
|
|
2. Are all of the jenkins builders happy? See jenkins.torproject.org.
|
|
|
|
|
|
|
|
What about the bsd buildbots?
|
|
|
|
See http://buildbot.pixelminers.net/builders/
|
|
|
|
|
|
|
|
What about Coverity Scan?
|
|
|
|
|
2016-11-08 00:54:51 +01:00
|
|
|
Does 'make distcheck' complain?
|
2016-03-28 22:07:19 +02:00
|
|
|
|
|
|
|
How about 'make test-stem' and 'make test-network'?
|
|
|
|
|
|
|
|
- Are all those tests still happy with --enable-expensive-hardening ?
|
|
|
|
|
|
|
|
Any memory leaks?
|
|
|
|
|
|
|
|
|
|
|
|
=== II. Write a changelog.
|
|
|
|
|
|
|
|
|
|
|
|
1. Gather the `changes/*` files into a changelog entry, rewriting many
|
2015-11-05 15:13:53 +01:00
|
|
|
of them and reordering to focus on what users and funders would find
|
|
|
|
interesting and understandable.
|
2015-10-09 15:38:59 +02:00
|
|
|
|
2017-05-26 16:01:04 +02:00
|
|
|
To do this, first run `./scripts/maint/lintChanges.py changes/*` and
|
|
|
|
fix as many warnings as you can. Then run `./scripts/maint/sortChanges.py
|
|
|
|
changes/* > changelog.in` to combine headings and sort the entries.
|
|
|
|
After that, it's time to hand-edit and fix the issues that lintChanges
|
|
|
|
can't find:
|
2015-10-09 15:38:59 +02:00
|
|
|
|
2017-05-26 16:01:04 +02:00
|
|
|
1. Within each section, sort by "version it's a bugfix on", else by
|
|
|
|
numerical ticket order.
|
2015-10-09 15:38:59 +02:00
|
|
|
|
2017-05-26 16:01:04 +02:00
|
|
|
2. Clean them up:
|
2015-10-09 15:38:59 +02:00
|
|
|
|
2015-11-05 15:13:53 +01:00
|
|
|
Make stuff very terse
|
2015-10-09 15:38:59 +02:00
|
|
|
|
2015-11-05 15:13:53 +01:00
|
|
|
Make sure each section name ends with a colon
|
2015-10-09 15:38:59 +02:00
|
|
|
|
2015-11-05 15:13:53 +01:00
|
|
|
Describe the user-visible problem right away
|
2015-10-09 15:38:59 +02:00
|
|
|
|
2015-11-05 15:13:53 +01:00
|
|
|
Mention relevant config options by name. If they're rare or unusual,
|
|
|
|
remind people what they're for
|
2015-10-09 15:38:59 +02:00
|
|
|
|
2015-11-05 15:13:53 +01:00
|
|
|
Avoid starting lines with open-paren
|
2015-10-09 15:38:59 +02:00
|
|
|
|
2015-11-05 15:13:53 +01:00
|
|
|
Present and imperative tense: not past.
|
2015-10-09 15:38:59 +02:00
|
|
|
|
2015-11-05 15:13:53 +01:00
|
|
|
'Relays', not 'servers' or 'nodes' or 'Tor relays'.
|
2015-10-09 15:38:59 +02:00
|
|
|
|
2015-11-05 15:13:53 +01:00
|
|
|
"Stop FOOing", not "Fix a bug where we would FOO".
|
2015-10-09 15:38:59 +02:00
|
|
|
|
2015-11-05 15:13:53 +01:00
|
|
|
Try not to let any given section be longer than about a page. Break up
|
|
|
|
long sections into subsections by some sort of common subtopic. This
|
|
|
|
guideline is especially important when organizing Release Notes for
|
|
|
|
new stable releases.
|
2015-10-09 15:38:59 +02:00
|
|
|
|
2015-11-05 15:13:53 +01:00
|
|
|
If a given changes stanza showed up in a different release (e.g.
|
|
|
|
maint-0.2.1), be sure to make the stanzas identical (so people can
|
|
|
|
distinguish if these are the same change).
|
2015-11-05 15:53:05 +01:00
|
|
|
|
2017-05-26 16:01:04 +02:00
|
|
|
3. Clean everything one last time.
|
2015-10-09 15:38:59 +02:00
|
|
|
|
2017-05-26 16:01:04 +02:00
|
|
|
4. Run `./scripts/maint/format_changelog.py --inplace` to make it prettier
|
2015-10-09 15:38:59 +02:00
|
|
|
|
|
|
|
|
2016-03-28 22:07:19 +02:00
|
|
|
2. Compose a short release blurb to highlight the user-facing
|
2015-11-05 15:13:53 +01:00
|
|
|
changes. Insert said release blurb into the ChangeLog stanza. If it's
|
|
|
|
a stable release, add it to the ReleaseNotes file too. If we're adding
|
2017-05-26 16:01:04 +02:00
|
|
|
to a release-* branch, manually commit the changelogs to the later
|
2015-11-05 15:13:53 +01:00
|
|
|
git branches too.
|
2015-10-09 15:38:59 +02:00
|
|
|
|
2017-03-26 01:09:37 +01:00
|
|
|
3. If there are changes that require or suggest operator intervention
|
|
|
|
before or during the update, mail operators (either dirauth or relays
|
|
|
|
list) with a headline that indicates that an action is required or
|
|
|
|
appreciated.
|
|
|
|
|
|
|
|
4. If you're doing the first stable release in a series, you need to
|
2015-11-05 15:46:40 +01:00
|
|
|
create a ReleaseNotes for the series as a whole. To get started
|
|
|
|
there, copy all of the Changelog entries from the series into a new
|
|
|
|
file, and run `./scripts/maint/sortChanges.py` on it. That will
|
|
|
|
group them by category. Then kill every bugfix entry for fixing
|
|
|
|
bugs that were introduced within that release series; those aren't
|
|
|
|
relevant changes since the last series. At that point, it's time
|
|
|
|
to start sorting and condensing entries. (Generally, we don't edit the
|
|
|
|
text of existing entries, though.)
|
|
|
|
|
2016-03-28 22:07:19 +02:00
|
|
|
|
|
|
|
=== III. Making the source release.
|
|
|
|
|
2017-05-26 16:01:04 +02:00
|
|
|
1. In `maint-0.?.x`, bump the version number in `configure.ac` and run
|
2015-11-05 15:13:53 +01:00
|
|
|
`scripts/maint/updateVersions.pl` to update version numbers in other
|
2017-05-26 16:01:04 +02:00
|
|
|
places, and commit. Then merge `maint-0.?.x` into `release-0.?.x`.
|
2015-10-09 15:38:59 +02:00
|
|
|
|
2015-11-05 15:13:53 +01:00
|
|
|
(NOTE: To bump the version number, edit `configure.ac`, and then run
|
|
|
|
either `make`, or `perl scripts/maint/updateVersions.pl`, depending on
|
2015-10-09 15:38:59 +02:00
|
|
|
your version.)
|
|
|
|
|
2017-05-26 16:01:04 +02:00
|
|
|
2. Make distcheck, put the tarball up in somewhere (how about your
|
|
|
|
homedir on your homedir on people.torproject.org?) , and tell `#tor`
|
|
|
|
about it. Wait a while to see if anybody has problems building it.
|
|
|
|
(Though jenkins is usually pretty good about catching these things.)
|
2015-10-09 15:38:59 +02:00
|
|
|
|
2016-03-28 22:07:19 +02:00
|
|
|
=== IV. Commit, upload, announce
|
2015-10-09 15:38:59 +02:00
|
|
|
|
2016-03-28 22:07:19 +02:00
|
|
|
1. Sign the tarball, then sign and push the git tag:
|
2015-11-05 15:53:05 +01:00
|
|
|
|
2015-11-05 15:13:53 +01:00
|
|
|
gpg -ba <the_tarball>
|
2017-05-26 16:01:04 +02:00
|
|
|
git tag -u <keyid> tor-0.3.x.y-status
|
|
|
|
git push origin tag tor-0.3.x.y-status
|
2015-10-09 15:38:59 +02:00
|
|
|
|
2016-03-28 22:07:19 +02:00
|
|
|
2. scp the tarball and its sig to the dist website, i.e.
|
2015-11-05 15:13:53 +01:00
|
|
|
`/srv/dist-master.torproject.org/htdocs/` on dist-master. When you want
|
|
|
|
it to go live, you run "static-update-component dist.torproject.org"
|
|
|
|
on dist-master.
|
2015-11-05 15:53:05 +01:00
|
|
|
|
2017-05-26 16:01:04 +02:00
|
|
|
In the webwml.git repository, `include/versions.wmi` and `Makefile`
|
|
|
|
to note the new version.
|
2015-10-09 15:38:59 +02:00
|
|
|
|
2016-01-27 18:37:01 +01:00
|
|
|
(NOTE: Due to #17805, there can only be one stable version listed at
|
|
|
|
once. Nonetheless, do not call your version "alpha" if it is stable,
|
|
|
|
or people will get confused.)
|
|
|
|
|
2017-05-26 16:01:04 +02:00
|
|
|
3. Email the packagers (cc'ing tor-team) that a new tarball is up.
|
2015-10-09 15:38:59 +02:00
|
|
|
The current list of packagers is:
|
2015-11-05 15:53:05 +01:00
|
|
|
|
2015-11-05 15:13:53 +01:00
|
|
|
- {weasel,gk,mikeperry} at torproject dot org
|
|
|
|
- {blueness} at gentoo dot org
|
2017-09-05 16:43:31 +02:00
|
|
|
- {paul} at invizbox dot io
|
|
|
|
- {vincent} at invizbox dot com
|
2015-11-05 15:13:53 +01:00
|
|
|
- {lfleischer} at archlinux dot org
|
2016-08-22 22:51:33 +02:00
|
|
|
- {Nathan} at freitas dot net
|
|
|
|
- {mike} at tig dot as
|
2017-05-26 16:01:04 +02:00
|
|
|
- {tails-rm} at boum dot org
|
2017-09-07 18:35:31 +02:00
|
|
|
- {simon} at sdeziel.info
|
2015-11-05 15:13:53 +01:00
|
|
|
|
2016-03-28 22:07:19 +02:00
|
|
|
4. Add the version number to Trac. To do this, go to Trac, log in,
|
2015-11-05 15:13:53 +01:00
|
|
|
select "Admin" near the top of the screen, then select "Versions" from
|
|
|
|
the menu on the left. At the right, there will be an "Add version"
|
|
|
|
box. By convention, we enter the version in the form "Tor:
|
|
|
|
0.2.2.23-alpha" (or whatever the version is), and we select the date as
|
|
|
|
the date in the ChangeLog.
|
|
|
|
|
2016-12-12 21:38:51 +01:00
|
|
|
5. Mail the release blurb and ChangeLog to tor-talk (development release) or
|
|
|
|
tor-announce (stable).
|
2015-11-05 15:13:53 +01:00
|
|
|
|
2016-12-12 21:38:51 +01:00
|
|
|
Post the changelog on the the blog as well. You can generate a
|
|
|
|
blog-formatted version of the changelog with the -B option to
|
|
|
|
format-changelog.
|
|
|
|
|
2017-05-26 16:01:04 +02:00
|
|
|
When you post, include an estimate of when the next TorBrowser
|
|
|
|
releases will come out that include this Tor release. This will
|
|
|
|
usually track https://wiki.mozilla.org/RapidRelease/Calendar , but it
|
|
|
|
can vary.
|
2015-11-05 15:13:53 +01:00
|
|
|
|
2016-03-28 22:07:19 +02:00
|
|
|
|
|
|
|
=== V. Aftermath and cleanup
|
|
|
|
|
2017-05-26 16:01:04 +02:00
|
|
|
1. If it's a stable release, bump the version number in the
|
|
|
|
`maint-x.y.z` branch to "newversion-dev", and do a `merge -s ours`
|
|
|
|
merge to avoid taking that change into master.
|
2016-03-28 22:07:19 +02:00
|
|
|
|
|
|
|
2. Forward-port the ChangeLog (and ReleaseNotes if appropriate).
|
|
|
|
|
2016-12-12 21:38:51 +01:00
|
|
|
3. Keep an eye on the blog post, to moderate comments and answer questions.
|
2016-03-28 22:07:19 +02:00
|
|
|
|