diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-10-11 15:05:58 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-10-11 15:06:05 +0200 |
commit | c702d0b9b5ba93c07d7ef945429429b5a70e96cd (patch) | |
tree | 74dbc9cb6f927e25205b11e6772029ddb424a5fe /releases.rst | |
parent | b4f65669546c102e8e7a2559b4cdb5e1547bd41c (diff) | |
download | docs-c702d0b9b5ba93c07d7ef945429429b5a70e96cd.tar.gz docs-c702d0b9b5ba93c07d7ef945429429b5a70e96cd.tar.bz2 docs-c702d0b9b5ba93c07d7ef945429429b5a70e96cd.zip |
preliminary release guide/checklist
Diffstat (limited to 'releases.rst')
-rw-r--r-- | releases.rst | 106 |
1 files changed, 106 insertions, 0 deletions
diff --git a/releases.rst b/releases.rst new file mode 100644 index 0000000..3a8ca82 --- /dev/null +++ b/releases.rst @@ -0,0 +1,106 @@ +.. + + This file is part of GNU TALER. + Copyright (C) 2016 INRIA + + TALER is free software; you can redistribute it and/or modify it under the + terms of the GNU General Public License as published by the Free Software + Foundation; either version 2.1, or (at your option) any later version. + + TALER is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. + You should have received a copy of the GNU Lesser General Public License along with + TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/> + + @author Florian Dold + + +============================== +Release Process and Checklists +============================== + +This document describes the process for releasing a new version of the various +Taler components to the official GNU mirrors. + +The following components are published on the GNU mirrors + +* taler-exchange (exchange.git) +* taler-merchant (merchant.git) +* talerfrontends (merchant-frontends.git) +* taler-bank (bank.git) +* taler-wallet-webex (wallet-webex.git) + + +-------- +Tagging +------- + +Tag releases with an *annotated* commit, like + +.. code-block: none + + git tag -a v0.1.0 -m "Official release v0.1.0" + git push origin v0.1.0 + +------------------ +Database for tests +----------------- + +For tests in the exchange and merchant to run, make sure that +a database `talertest` is accessible by `$USER`. Otherwise tests +involving the database logic are skipped. + +------------------ +Exchange, merchant +------------------ + +Set the version in `configure.ac`. The commit being tagged +should be the change of the version. + +For the exchange test cases to pass, `make install` must be run first. +Without it, test cases will fail because plugins can't be located. + +.. code-block: + + ./bootstrap + ./configure # add required options for your system + make dist + tar -xf taler-$COMPONENT-$VERSION.tar.gz + cd taler-$COMPONENT-$VERSION + make install check + +-------------------- +Wallet WebExtension +-------------------- + +The version of the wallet is in `manifest.json`. The `version_name` should be +adjusted, and `version` should be increased independently on every upload to +the WebStore. + +.. code-block: + + ./configure + make dist + + + +FIXME: selenium test cases + + +---------------------- +Upload to GNU mirrors +---------------------- + +See https://www.gnu.org/prep/maintain/maintain.html#Automated-FTP-Uploads + +Directive file: + +.. code-block: + + version: 1.2 + directory: taler + filename: taler-exchange-0.1.0.tar.gz + + +Upload the files in *binary mode* to the ftp servers. |