Difference between revisions of "What to do for a release"

From Gramps
Jump to: navigation, search
m (Post-release)
(Working on VERSION)
 
(231 intermediate revisions by 10 users not shown)
Line 1: Line 1:
'''What to do for a release '''
+
{{man note|Developer notes for '''What to do for a release '''}}
= Guidelines for version 4.0 =
 
  
These notes are based on version 4.0.0alpha1, released in December 2012The steps assume a working <tt>gramps40</tt> source directory.
+
Note that the main use of this page will be for making a normal "minor" release.  If you are making a "major" release (e.g. x.y.0) then you will need to update this page first, to change the numbersBut if you are only making an "alpha" or "beta" release, some steps may be skipped, or altered slightly.
  
==Translation update==
+
Note also that there are additional necessary [[What_to_do_for_a_release#Post-release|Post release]] tasks which are related to making a new release. For instance, the wiki will require making a new release-section and  updating [[Template:Version_Templates#General|"General" version templates]]. For the making a new release-section on the bug tracker. Or when making new Debian and Mac and Windows [[:Category:Developers/Packaging|packaging]], they will need to be coordinated with the appropriate [[Team#Package_Maintainers|package maintainers]] and updating the corresponding [[:Category:Versions|Versions]] : [[Template:Version_Templates|Templates]].  
Run the following steps:
 
cd gramps40
 
svn update
 
cd po
 
python update_po.py -p # or intltool-update -p , .genpot.sh see [[Translation_environment4|New environment]]
 
svn diff gramps.pot
 
If there have been changes, you'll need to commit <tt>gramps.pot</tt> and ask translators to update their <tt>.po</tt> files before you can make a release.
 
  
==Release name==
+
==Pre-release==
Refer to (and update) the [[Previous releases|list of previous releases]] to select an appropriate name.
+
===Agree a release timetable===
 +
 
 +
Co-ordinate with the [[Team#Package_Maintainers|package maintainers]] to agree a release timetable.
 +
For a major release there may be a schedule on the [[5.2_Roadmap|Roadmap]]
 +
 
 +
===Announce a feature freeze===
 +
For a major release, announce a feature freeze on the ''gramps-devel'' mailing list.
 +
This will usually be about 4 weeks before the release date.
 +
 
 +
===Translation update===
 +
The translation template should be updated, if necessary, just before the string freeze is announced.
 +
* Check for new files since the last release:
 +
  cd po
 +
  intltool-update -m
 +
:That will create a file called <code>missing</code>in the <code>po</code> directory if there are new files that need to be scanned for translatable strings. Examine each of the files listed in <code>missing</code>, adding each to <code>POTFILES.in</code> if it contains translatable string constants and to <code>POTFILES.skip</code> if it does not.
 +
* Generate a new template file:
 +
  python3 update_po.py -p # makes a new gramps.pot template file
 +
  git diff gramps.pot
 +
:Examine the changes. If they're all just comments about where a string is found you need not commit the change (so the next line will restore the official file, instead of the one you just made):
 +
  git restore gramps.pot
 +
:If there have been changes on <code>msgid</code> entries, you'll need to commit <code>gramps.pot</code> and ask translators to update their <tt>.po</tt> files before you can make a release:
 +
  git add gramps.pot
 +
  git commit -m "Update translation template for new release"
  
==Changelog and NEWS file==
+
* Check current translation files:
Create the changelog files:
+
  python3 update_po.py -k all
svn2cl --reparagraph --include-rev --authors=data/authors.xml
+
:There should be very few warnings or fatal errors. Warnings related to new languages using default values in their headers are acceptable. There will also be some fatal errors reported due to the non-standard way we handle inflected dates. See the section on [https://gramps-project.org/wiki/index.php/Date_Handler#Localizing_the_date_formats Localizing the date formats] in the [https://gramps-project.org/wiki/index.php/Date_Handler Date Handler] wiki page for further details.  For example "{long_month}" may be translated as "{long_month.f[Р]}".
cd po
+
:All other fatal errors should be fixed.
svn2cl --reparagraph --include-rev --authors=../data/authors.xml
+
Also see:
cd ..
+
* [[Template:Gramps_translations#INCOMPLETE_TRANSLATIONS]] - Update if any translation needs to be added or excluded due to not meeting the minimum 70% completion requirement.
  
Using the <tt>Changelog</tt> files generated with <tt>svn2cl</tt> in the step above, edit and update the <tt>NEWS</tt> file.
+
===Announce a string freeze===
Commit the NEWS file.  Note the svn commit revision number, which you'll need in the next step when you create the subversion tag:
+
For a major release, announce a string freeze on the ''gramps-devel'' mailing list and on Weblate.
svn commit -m "update for 4.0.0-alpha1 release"
+
This will usually be about 2 weeks before the release date.
Committed revision 20810.
 
  
==Working on VERSION==
+
In the ''Program'' component on Weblate, select "Manage⟶Post announcement" from the menu.  Enter an ''Expiry date'' the day before the release date, and select the ''Notify users'' checkbox to send a notification to all subscribed users.
  
Modify <tt>version.py</tt> to indicate an official release:
+
==Prepare your repository==
gedit gramps/version.py
+
* Check out the current stable branch:
and update the version for the release:
+
  git checkout maintenance/gramps{{Stable_branch}}
VERSION_TUPLE = (4, 0, 0)
+
:That branch name assumes that you're using the same name as the Github repository; if you're not (perhaps you don't use <code>maintenance</code> in the name) use your local name.
Save change.
+
* Make sure that your local copy is clean:
 +
  git status
 +
: If you have any uncommitted changes, either commit them now or stash them until after you've completed the release.
 +
* Clean up any untracked files and make sure that the local repo is up to date:
 +
  git clean -fdx
 +
  git pull --rebase
 +
:If you had commits that hadn't been pushed yet they'll show up as "applying" messages in the output of this command. If that's the case re-run the tests and push as usual.
 +
* Build and test to make sure that everything works, then clean the repo of all build products.
  
svn commit -m "make official release" gramps/version.py
+
===Check the About box year===
  
The version number should be the same on "about" dialog:
+
Check if the year in the {{man label|About}} box needs to be updated
python Gramps.py
 
  
==Subversion tag==
+
eg:
Using the previous commit revision number, create a tag for the new release:
+
  ''© 2007-2023 The Gramps Developers''
svn copy -r 22385 https://svn.code.sf.net/p/gramps/code/branches/maintenance/gramps40 https://svn.code.sf.net/p/gramps/code/tags/gramps-4.0.0 -m "tag 4.0.0"
+
to
Committed revision 22386.
+
  ''© 2007-'''2024''' The Gramps Developers''.
  
==Changelog and source tarball==
+
Found in <code>gramps/gen/const.py</code>
The Changelog files are required for the source tarball, but do not commit them to subversion.
 
  
#Copy files from [[#Changelog and NEWS file|previous run under branch]].
+
===API docs update year===
#Modify <tt>MANIFEST.in</tt>
+
If needed in the file:
+ include ChangeLog
 
  
Create the official source tarball:
+
docs/conf.py
python setup.py sdist
 
  
Note you should now have the file <tt>dist/gramps-4.0.0.tar.gz</tt>, approximately 14.7 Mo in size.
 
  
==Making the source tarball available==
+
Update the year for the copyright.
* access the "Sourceforge Project Admin->File Manager" page at https://sourceforge.net/projects/gramps/
 
* create a new folder in the "Unstable" hierarchy
 
* upload the <tt>gramps-*.tar.gz</tt> file to the new folder
 
  
==Announcing the new release==
+
copyright = '2001-2024, The Gramps Project'
 
* update [[News]] section on this wiki
 
* update the list of [[previous releases]]
 
* update reference to the new version on the [[Template:Version|wiki template]]
 
* change the topic on the IRC channel #gramps
 
* update the version number at [http://en.wikipedia.org/wiki/GRAMPS Wikipedia]
 
  
==Post-release==
+
===Update Classifier in setup.py===
* bump the version number in <tt>gramps/version.py</tt>
+
Change [https://pypi.python.org/pypi?%3Aaction=list_classifiers Classifier] to the appropriate one in [https://github.com/gramps-project/gramps/blob/maintenance/gramps50/setup.py setup.py]  (master is always the first one)
* in <tt>trunk</tt>, merge forward the <tt>NEWS</tt> file
 
  
= Guidelines for version 3.4 and before =
+
<pre>
These notes are based on version 3.4.1, released in August 2012.  The steps assume a working <tt>gramps34</tt> source directory.
+
Development Status :: 1 - Planning
 +
Development Status :: 2 - Pre-Alpha
 +
Development Status :: 3 - Alpha
 +
Development Status :: 4 - Beta
 +
Development Status :: 5 - Production/Stable
 +
</pre>
  
==Translation update==
+
Check if any additional language classifier needs to be added also.
Run the following steps:
 
cd gramps34
 
svn update
 
cd po
 
make gramps.pot
 
svn diff gramps.pot
 
If there have been changes, you'll need to commit <tt>gramps.pot</tt> and ask translators to update their <tt>.po</tt> files before you can make a release.
 
  
 
==Release name==
 
==Release name==
Refer to (and update) the [[Previous releases|list of previous releases]] to select an appropriate name.
+
Refer to (and update) the [[Previous releases of Gramps|list of previous releases]].
 +
 
 +
Previously you needed to select an appropriate name but we have not named releases for several years now.  You will still need to add the release though, including things like its relevant color.
 +
 
 +
* [[Talk:Previous_releases_of_Gramps|Suggestions]] : For Gramps 5.0 <code>Just remember that you're standing on a planet that's evolving</code>
  
 
==Changelog and NEWS file==
 
==Changelog and NEWS file==
Create the changelog files:
 
svn2cl --reparagraph --include-rev --authors=src/data/authors.xml
 
cd po
 
svn2cl --reparagraph --include-rev --authors=../src/data/authors.xml
 
cd ..
 
  
Using the <tt>Changelog</tt> files generated with <tt>svn2cl</tt> in the step above, edit and update the <tt>NEWS</tt> file.
+
[https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html#section2 Section ''2a''] of the '''G'''eneral '''P'''ublic '''L'''icense says that if you distribute a modified version of a program: ''you must cause the modified files to carry prominent notices stating that you changed the files and the date of any change''.
Commit the NEWS file.  Note the svn commit revision number, which you'll need in the next step when you create the subversion tag:
+
 
  svn commit -m "update for 3.4.1 release"
+
Note that the <code>{{version}}</code> below means the ''previous'' version, not the one you're about to release (which is the
  Committed revision 20254.
+
<code>..</code>).
 +
git log v{{version}}.. --pretty --numstat --summary --no-merges | git2cl > ChangeLog
 +
git log v{{version}}.. --pretty --numstat --summary --no-merges -- po/*.po | git2cl > po/ChangeLog
 +
git add ChangeLog
 +
git add po/ChangeLog
 +
*Edit and update the <code>NEWS</code> file using the new ChangeLog entries as a guide. If this is the first branch in a new series there will be no NEWS file, so look at a previous release and mimic the format.
 +
Commit the NEWS file:
 +
git add NEWS
 +
git commit -m "Update Changelog and NEWS files"
 +
 
 +
==Working on VERSION==
 +
 +
* Modify <code>[https://github.com/gramps-project/gramps/blob/master/gramps/version.py gramps/version.py]</code> to indicate an official release:
 +
  - DEV_VERSION = True
 +
+ DEV_VERSION = False
 +
 
 +
* Check that the <code>VERSION_TUPLE</code> reflects the release you're about to make. It should if the version was bumped after the last release. If not, fix it.
 +
 
 +
* Add an entry to the [https://github.com/gramps-project/gramps/blob/maintenance/gramps52/data/org.gramps_project.Gramps.metainfo.xml.in org.gramps_project.Gramps.metainfo.xml.in] file.
 +
 
 +
* Save the changes:
 +
  git commit -am "Release Gramps {{version}}"
 +
 
 +
* Check that the version number is correct:
 +
python3 Gramps.py -v
 +
 
 +
* If everything looks good, push the changes:
 +
  git push origin maintenance/gramps{{Stable_branch}}
 +
* If that fails then someone pushed a commit while you were working. Return to [[What_to_do_for_a_release#Prepare_your_repository|Prepare your repository]] and start over.
 +
 
 +
==Create a tag==
 +
Create the release tag; note the '''v''' leading the actual tag.:
 +
git tag -am "Tag {{version}}" v{{version}}
 +
 
 +
==Push to repository==
 +
Push the changes to the repository:
 +
  git push origin v{{version}}
 +
 
 +
===Move to the new release number on branch ===
  
==Subversion tag==
+
Bump the version number in <code>gramps/version.py</code>
Using the previous commit revision number, create a tag for the new release:
 
svn copy -r 20254 https://svn.code.sf.net/p/gramps/code/branches/maintenance/gramps34 https://svn.code.sf.net/p/gramps/code/tags/gramps-3.4.1 -m "tag 3.4.1"
 
Committed revision 20255.
 
  
==Working on the tag==
+
Update the version for the release:
Check out the new tag:
+
  VERSION_TUPLE = (4, 2, ...)
  cd ..
 
svn co https://svn.code.sf.net/p/gramps/code/tags/gramps-3.4.1
 
cd gramps-3.4.1
 
  
Modify <tt>configure.in</tt> to indicate an official release:
+
Revert change on <code>DEV_VERSION</code> so that the git revision is appended to the reported version in non-release builds:
gedit configure.in
+
  - DEV_VERSION = False
There are two changes to make:
+
  + DEV_VERSION = True
:1) Change the following line:
 
-RELEASE=0.SVN$(svnversion -n .)
 
+dnl RELEASE=0.SVN$(svnversion -n .)
 
:2) And change this line:
 
  -dnl RELEASE=1
 
  +RELEASE=1
 
Save these two changes.
 
svn commit -m "make official release" configure.in
 
Now run the following and check the version number in the "about" dialog:
 
./autogen.sh
 
make
 
python src/gramps.py
 
  
==Changelog and source tarball==
+
Save change:
Re-create (or copy from above) the 2 Changelog files. The Changelog files are required for the source tarball, but do not commit to subversion:
+
  git commit -am "Bump to <new version number>"
svn2cl --reparagraph --include-rev --authors=src/data/authors.xml
+
  git push
cd po
 
svn2cl --reparagraph --include-rev --authors=../src/data/authors.xml
 
cd ..
 
Create the official source tarball:
 
  make distcheck
 
  
Note you should now have the file <tt>gramps-3.4.1.tar.gz</tt>, approximately 9.6 Mo in size.
+
===Github===
 +
* Github generates a tarball automatically when we push a tag.
 +
* Go to [https://github.com/gramps-project/gramps Github] and log in if necessary.
 +
* Select '''NN Releases''' from the line of items just above the thick line ('''NN''' is the number of releases so far).
 +
* Find the tag you just pushed and click it, or click the "Draft a new release" button.
 +
* Copy the NEWS file contents into the '''Write''' tab. You can use the '''Preview''' tab to check your formatting.
 +
* Click '''Publish Release''' at the bottom of the edit area when you're satisfied with the contents.
  
==Making the source tarball available==
+
===SourceForge===
* access the "Sourceforge Project Admin->File Manager" page at https://sourceforge.net/projects/gramps/
+
* Go to [https://sourceforge.net/projects/gramps/files/ the SourceForge files page] and log in if necessary.
* create a new folder in the "Stable" hierarchy
+
* Click on '''Stable''' or '''Unstable''' depending on the class of the release you're making.
* upload the <tt>gramps-*.tar.gz</tt> file to the new folder
+
* Click '''Add Folder''' and name the directory for the release version. Click "'Create'". Click your new folder to enter it.
 +
* You can either download the GitHub-generated tarball or create one locally:
 +
  python3 setup.py sdist
 +
* Click '''Add File''' and drag the tarball to the drop area on the web page.
 +
* Copy the release notes from GitHub into a file called README.md and upload it.
  
 
==Announcing the new release==
 
==Announcing the new release==
+
* update mantisdb(Bug/issue database) and enable the new version via Admin:Projects item for reporting issues. (You will need a high-enough status on the bug tracker in order to do this, so you can ask an appropriate person if you aren't.)
* update [[News]] section on this wiki
+
* announce on [email protected], [email protected] and [email protected] (You will need to be a member of all three lists first, to send to them.)
* update the list of [[previous releases]]
+
* announce on the Discourse forum in the "[https://gramps.discourse.group/c/gramps-announce Announcements]" category.
* update reference to the new version on the [[Template:Version|wiki template]]
+
* announce on Gramps [https://gramps-project.org/blog/blog/ blog] (File under: [https://gramps-project.org/blog/category/releases/ Gramps Releases] and [https://gramps-project.org/blog/category/news/  News]) (not needed for an alpha or beta release)
* change the topic on the IRC channel #gramps
+
* update [[News]] section on this wiki (not needed for an alpha or beta release)
* update the version number at [http://en.wikipedia.org/wiki/GRAMPS Wikipedia]
+
* update the list of [[Previous releases of Gramps|previous releases]]
 +
* update reference to the new version on the [[Template:Version|wiki template]] (not needed for an alpha or beta release)
 +
* Verify other [[:Category:Versions|"version" Wiki templates]] values: Last version, Stable version, etc.
 +
* update [[HeadlineNews]] (not needed for an alpha or beta release)
 +
* update release date on the [[Download]] page (not needed for an alpha or beta release)
 +
* change the Matrix room title and IRC channel title (not needed for an alpha or beta release)
 +
* update the version number at [https://en.wikipedia.org/wiki/Gramps_(software) Wikipedia] (not needed for an alpha or beta release)
  
 
==Post-release==
 
==Post-release==
* in <tt>gramps34</tt>, bump the version number in <tt>configure.in</tt> and <tt>src/const.py.in</tt>
+
* merge forward the <code>NEWS</code> file
* in <tt>trunk</tt>, merge forward the <tt>NEWS</tt> file
 
  
 
=See also=
 
=See also=
* [[Brief introduction to SVN]]
+
*Category [[:Category:Versions|Versions]] : [[Template:Version_Templates|Template]]
 +
*Building a distribution to share as on the [[Download]] page
 +
:[[File:Windows_32x32.png]] [[Building Gramps AIO cx freeze-based]] - Updating the MS-Windows 32-bit and 64-bit All-In-One packages
 +
<!--
 +
:[[File:Linux 32x32.png]]  please add link to instructions on building Gramps installers for Linux. proofed while building v5.1.3 
 +
:[[File:Beastie 32x32.png]]  please add link to instructions on building Gramps installer for BSD. proofed while building v5.1.3 
 +
:[[File:Apple logo black 32x32.png]]  please add link to instructions on building Gramps installer for Apple. proofed while building v5.1.3 
 +
-->
 +
* [[Brief introduction to Git]]
 
* [[Running a development version of Gramps]]
 
* [[Running a development version of Gramps]]
 
* [[:Category:Developers/Packaging]]
 
* [[:Category:Developers/Packaging]]
 +
* [[:Category:AppData]] - Screenshots used by Appdata - Debian
 +
* [[.dtd and .rng]]
 +
* [[Rollover_for_the_manual|Rollover for the Wiki]] - for major and minor releases. No rollover for maintenance releases.
 +
* [[Special:WhatLinksHere/Template:Bug|List of pages linked to Bug Report template]] - verify the reported issues still apply to the new release. Leave links in place for any issue fixed in maintenance releases. Simply add notations for the version where the fix was applied. Remove links for fixed issues in Rollovers.
  
 
=External links=
 
=External links=
* http://svn.code.sf.net/p/gramps/code/
+
* https://github.com/gramps-project
* http://gramps-project.org/cpanel
+
* https://gramps-project.org/cpanel
* http://sourceforge.net/projects/gramps/
+
* https://sourceforge.net/projects/gramps/
  
 
[[Category:Developers/General]]
 
[[Category:Developers/General]]
 +
[[Category:Developers/Packaging]]

Latest revision as of 23:12, 24 March 2024

Gramps-notes.png
'Developer notes for What to do for a release '

Note that the main use of this page will be for making a normal "minor" release. If you are making a "major" release (e.g. x.y.0) then you will need to update this page first, to change the numbers. But if you are only making an "alpha" or "beta" release, some steps may be skipped, or altered slightly.

Note also that there are additional necessary Post release tasks which are related to making a new release. For instance, the wiki will require making a new release-section and updating "General" version templates. For the making a new release-section on the bug tracker. Or when making new Debian and Mac and Windows packaging, they will need to be coordinated with the appropriate package maintainers and updating the corresponding Versions : Templates.

Pre-release

Agree a release timetable

Co-ordinate with the package maintainers to agree a release timetable. For a major release there may be a schedule on the Roadmap

Announce a feature freeze

For a major release, announce a feature freeze on the gramps-devel mailing list. This will usually be about 4 weeks before the release date.

Translation update

The translation template should be updated, if necessary, just before the string freeze is announced.

  • Check for new files since the last release:
 cd po
 intltool-update -m 
That will create a file called missingin the po directory if there are new files that need to be scanned for translatable strings. Examine each of the files listed in missing, adding each to POTFILES.in if it contains translatable string constants and to POTFILES.skip if it does not.
  • Generate a new template file:
 python3 update_po.py -p # makes a new gramps.pot template file
 git diff gramps.pot
Examine the changes. If they're all just comments about where a string is found you need not commit the change (so the next line will restore the official file, instead of the one you just made):
 git restore gramps.pot
If there have been changes on msgid entries, you'll need to commit gramps.pot and ask translators to update their .po files before you can make a release:
 git add gramps.pot
 git commit -m "Update translation template for new release"
  • Check current translation files:
 python3 update_po.py -k all
There should be very few warnings or fatal errors. Warnings related to new languages using default values in their headers are acceptable. There will also be some fatal errors reported due to the non-standard way we handle inflected dates. See the section on Localizing the date formats in the Date Handler wiki page for further details. For example "{long_month}" may be translated as "{long_month.f[Р]}".
All other fatal errors should be fixed.

Also see:

Announce a string freeze

For a major release, announce a string freeze on the gramps-devel mailing list and on Weblate. This will usually be about 2 weeks before the release date.

In the Program component on Weblate, select "Manage⟶Post announcement" from the menu. Enter an Expiry date the day before the release date, and select the Notify users checkbox to send a notification to all subscribed users.

Prepare your repository

  • Check out the current stable branch:
 git checkout maintenance/gramps52
That branch name assumes that you're using the same name as the Github repository; if you're not (perhaps you don't use maintenance in the name) use your local name.
  • Make sure that your local copy is clean:
 git status
If you have any uncommitted changes, either commit them now or stash them until after you've completed the release.
  • Clean up any untracked files and make sure that the local repo is up to date:
 git clean -fdx
 git pull --rebase
If you had commits that hadn't been pushed yet they'll show up as "applying" messages in the output of this command. If that's the case re-run the tests and push as usual.
  • Build and test to make sure that everything works, then clean the repo of all build products.

Check the About box year

Check if the year in the About box needs to be updated

eg:

  © 2007-2023 The Gramps Developers 

to

  © 2007-2024 The Gramps Developers.

Found in gramps/gen/const.py

API docs update year

If needed in the file:

docs/conf.py


Update the year for the copyright.

copyright = '2001-2024, The Gramps Project'

Update Classifier in setup.py

Change Classifier to the appropriate one in setup.py (master is always the first one)

Development Status :: 1 - Planning
Development Status :: 2 - Pre-Alpha
Development Status :: 3 - Alpha
Development Status :: 4 - Beta
Development Status :: 5 - Production/Stable

Check if any additional language classifier needs to be added also.

Release name

Refer to (and update) the list of previous releases.

Previously you needed to select an appropriate name but we have not named releases for several years now. You will still need to add the release though, including things like its relevant color.

  • Suggestions : For Gramps 5.0 Just remember that you're standing on a planet that's evolving

Changelog and NEWS file

Section 2a of the General Public License says that if you distribute a modified version of a program: you must cause the modified files to carry prominent notices stating that you changed the files and the date of any change.

Note that the 5.2.1 below means the previous version, not the one you're about to release (which is the ..).

git log v5.2.1.. --pretty --numstat --summary --no-merges | git2cl > ChangeLog
git log v5.2.1.. --pretty --numstat --summary --no-merges -- po/*.po | git2cl > po/ChangeLog
git add ChangeLog
git add po/ChangeLog
  • Edit and update the NEWS file using the new ChangeLog entries as a guide. If this is the first branch in a new series there will be no NEWS file, so look at a previous release and mimic the format.

Commit the NEWS file:

git add NEWS
git commit -m "Update Changelog and NEWS files"

Working on VERSION

- DEV_VERSION = True
+ DEV_VERSION = False
  • Check that the VERSION_TUPLE reflects the release you're about to make. It should if the version was bumped after the last release. If not, fix it.
  • Save the changes:
git commit -am "Release Gramps 5.2.1"
  • Check that the version number is correct:
python3 Gramps.py -v
  • If everything looks good, push the changes:
 git push origin maintenance/gramps52
  • If that fails then someone pushed a commit while you were working. Return to Prepare your repository and start over.

Create a tag

Create the release tag; note the v leading the actual tag.:

git tag -am "Tag 5.2.1" v5.2.1

Push to repository

Push the changes to the repository:

git push origin v5.2.1

Move to the new release number on branch

Bump the version number in gramps/version.py

Update the version for the release:

VERSION_TUPLE = (4, 2, ...)

Revert change on DEV_VERSION so that the git revision is appended to the reported version in non-release builds:

- DEV_VERSION = False
+ DEV_VERSION = True

Save change:

git commit -am "Bump to <new version number>"
git push

Github

  • Github generates a tarball automatically when we push a tag.
  • Go to Github and log in if necessary.
  • Select NN Releases from the line of items just above the thick line (NN is the number of releases so far).
  • Find the tag you just pushed and click it, or click the "Draft a new release" button.
  • Copy the NEWS file contents into the Write tab. You can use the Preview tab to check your formatting.
  • Click Publish Release at the bottom of the edit area when you're satisfied with the contents.

SourceForge

  • Go to the SourceForge files page and log in if necessary.
  • Click on Stable or Unstable depending on the class of the release you're making.
  • Click Add Folder and name the directory for the release version. Click "'Create'". Click your new folder to enter it.
  • You can either download the GitHub-generated tarball or create one locally:
 python3 setup.py sdist
  • Click Add File and drag the tarball to the drop area on the web page.
  • Copy the release notes from GitHub into a file called README.md and upload it.

Announcing the new release

  • update mantisdb(Bug/issue database) and enable the new version via Admin:Projects item for reporting issues. (You will need a high-enough status on the bug tracker in order to do this, so you can ask an appropriate person if you aren't.)
  • announce on [email protected], [email protected] and [email protected] (You will need to be a member of all three lists first, to send to them.)
  • announce on the Discourse forum in the "Announcements" category.
  • announce on Gramps blog (File under: Gramps Releases and News) (not needed for an alpha or beta release)
  • update News section on this wiki (not needed for an alpha or beta release)
  • update the list of previous releases
  • update reference to the new version on the wiki template (not needed for an alpha or beta release)
  • Verify other "version" Wiki templates values: Last version, Stable version, etc.
  • update HeadlineNews (not needed for an alpha or beta release)
  • update release date on the Download page (not needed for an alpha or beta release)
  • change the Matrix room title and IRC channel title (not needed for an alpha or beta release)
  • update the version number at Wikipedia (not needed for an alpha or beta release)

Post-release

  • merge forward the NEWS file

See also

Windows 32x32.png Building Gramps AIO cx freeze-based - Updating the MS-Windows 32-bit and 64-bit All-In-One packages

External links