Koha/misc/release_notes
Nicole C. Engard 975e876c5e Add missing library to release notes
Signed-off-by: Nicole C. Engard <nengard@bywatersolutions.com>
Signed-off-by: Galen Charlton <gmcharlt@gmail.com>
Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
2011-04-23 08:23:47 +12:00
..
README.txt Bug 5370: Fix all references to koha.org 2010-11-09 10:45:27 +13:00
release_notes_3_2_0.txt Release notes for Koha 3.2.0 2010-10-22 01:45:28 -04:00
release_notes_3_4_0.txt Add missing library to release notes 2011-04-23 08:23:47 +12:00
release_notes_22RC1.txt Convert to UTF-8. 2010-05-06 17:58:45 -04:00
release_notes_22RC2.txt Convert to UTF-8. 2010-05-06 17:58:45 -04:00
release_notes_22RC3.txt Convert to UTF-8. 2010-05-06 17:58:45 -04:00
release_notes_22RC4.txt Convert to UTF-8. 2010-05-06 17:58:45 -04:00
release_notes_22RC5.txt Convert to UTF-8. 2010-05-06 17:58:45 -04:00
release_notes_191.txt Removing white spaces from directory and filenames as they restrict portability across OS platforms. 2007-12-19 18:55:12 -06:00
release_notes_192.txt Removing white spaces from directory and filenames as they restrict portability across OS platforms. 2007-12-19 18:55:12 -06:00
release_notes_193.txt Removing white spaces from directory and filenames as they restrict portability across OS platforms. 2007-12-19 18:55:12 -06:00
release_notes_200pre1.txt Removing white spaces from directory and filenames as they restrict portability across OS platforms. 2007-12-19 18:55:12 -06:00
release_notes_200pre2.txt Removing white spaces from directory and filenames as they restrict portability across OS platforms. 2007-12-19 18:55:12 -06:00
release_notes_200pre3.txt Removing white spaces from directory and filenames as they restrict portability across OS platforms. 2007-12-19 18:55:12 -06:00
release_notes_200pre4.txt Removing white spaces from directory and filenames as they restrict portability across OS platforms. 2007-12-19 18:55:12 -06:00
release_notes_200pre5.txt Removing white spaces from directory and filenames as they restrict portability across OS platforms. 2007-12-19 18:55:12 -06:00
release_notes_200RC1.txt Removing white spaces from directory and filenames as they restrict portability across OS platforms. 2007-12-19 18:55:12 -06:00
release_notes_200RC2.txt Removing white spaces from directory and filenames as they restrict portability across OS platforms. 2007-12-19 18:55:12 -06:00
release_notes_200RC3.txt Removing white spaces from directory and filenames as they restrict portability across OS platforms. 2007-12-19 18:55:12 -06:00
release_notes_200RC4.txt Removing white spaces from directory and filenames as they restrict portability across OS platforms. 2007-12-19 18:55:12 -06:00
release_notes_210.txt Removing white spaces from directory and filenames as they restrict portability across OS platforms. 2007-12-19 18:55:12 -06:00
release_notes_211.txt Removing white spaces from directory and filenames as they restrict portability across OS platforms. 2007-12-19 18:55:12 -06:00
release_notes_212.txt Removing white spaces from directory and filenames as they restrict portability across OS platforms. 2007-12-19 18:55:12 -06:00
release_notes_213.txt Removing white spaces from directory and filenames as they restrict portability across OS platforms. 2007-12-19 18:55:12 -06:00
release_notes_220.txt Removing white spaces from directory and filenames as they restrict portability across OS platforms. 2007-12-19 18:55:12 -06:00
release_notes_221.txt Removing white spaces from directory and filenames as they restrict portability across OS platforms. 2007-12-19 18:55:12 -06:00
release_notes_222.txt Removing white spaces from directory and filenames as they restrict portability across OS platforms. 2007-12-19 18:55:12 -06:00
release_notes_223.txt Removing white spaces from directory and filenames as they restrict portability across OS platforms. 2007-12-19 18:55:12 -06:00
release_notes_30000.txt Nomenclature cleanup prior to release 2008-08-10 16:40:37 -05:00
release_notes_30000alpha.txt adding download link 2008-01-05 02:59:57 -06:00
release_notes_30000beta.txt updating release notes 2008-03-23 00:26:15 -05:00
release_notes_30000stableRC1.txt Updating release number 2008-06-23 08:05:49 -05:00
release_notes_30001.txt forward-port rest of changes to 3.0.1 release notes 2010-02-08 13:38:01 -05:00
release_notes_30002.txt minor update on release notes 2010-02-08 13:33:15 -05:00
release_notes_30003.txt Preparing 3.0.3 2010-02-08 13:31:05 -05:00
release_notes_30004.txt Updated references to Portuguese translation in Release Notes 2010-02-08 13:29:31 -05:00
release_notes_30005.txt Update on release notes 2010-02-08 13:28:14 -05:00

How to build a Koha release -- list of reminders for RMs

Update and document the translations
 ./update.pl will update all translations and you can check for
 failed ones (a copy of the previous version of the po file is
 stored with a ~ (tilda) sign after it, so any that don't have that
 didn't succeed

Install and test the translations
 ./translate install will install every translation in the po dir

Upload the translations to translate.koha.org
 This is generally done by deleting the database and importing
 the po files using the import tool as part of kartouche

Update the release notes (look at git logs for
major improvements)

Alter the VERSION string in Makefile.PL and comment
out VERSION_FROM. For instance:
 				VERSION     => '3.00.00-stable',
               #VERSION_FROM => 'kohaversion.pl',

run perl Makefile.PL and then make manifest tardist

Sign, MD5 the release, upload:
 put the tarball its own dir
 run the following

 $ md5sum * >koha-3.00.00-alpha.tar.gz.MD5
 $ gpg --clearsign koha-3.00.00-alpha.tar.gz.MD5
 $ cat koha-3.00.00-alpha.tar.gz.MD5.asc
 $ gpg --detach-sign koha-3.00.00-alpha.tar.gz
 $ scp * download.koha-community.org

Tag the Release:
From a clone of the RM repo, run:

 $ git tag -a -m "version 3.00.00 beta" v3.00.00-beta
 $ git push --tags

From the gitweb repo, issue:

 $ git fetch --tags

 * update the website, trigger the change
 * email the list