Changes between Version 49 and Version 50 of ReleaseGuidelines
- Timestamp:
- 05/02/17 19:11:24 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ReleaseGuidelines
v49 v50 18 18 Search previously created ticket with task about next version release (create if ticket not found) and follow by steps while preparing for the release: 19 19 20 * prepare repository for release 21 {{{ 22 git fetch 23 git checkout master 24 git reset --hard origin/master 25 git clean -dfx 26 ./autogen.sh 27 mkdir dist; cd dist; ../configure; cd .. 28 }}} 20 29 * download PO-translations from Transifex.net by command {{{MC_SOURCE_ROOT_DIR=$(pwd) maint/utils/sync-transifex/po-fromTransifex.sh}}} (see before: [wiki:TxRepoSetup how to set up local tx-repository]) 21 30 * store translations in git repo by following commands: 22 31 {{{ 23 git add po/*.po 32 git add po/*.po 33 make -C dist/po update-po 24 34 git commit -s -m 'Update translations from Transifex' 25 35 git push origin master … … 49 59 * create tar.(bz2|xz) package files 50 60 {{{ 51 ./autogen.sh52 mkdir dist; cd dist; ../configure53 61 fakeroot make dist-bzip2 && fakeroot make dist-xz 54 62 }}}