0
0
mirror of https://github.com/gramps-project/gramps synced 2025-10-05 23:52:46 +02:00

Release Gramps 6.0.5

This commit is contained in:
Nick Hall
2025-09-06 21:37:44 +01:00
parent c6645f981a
commit 66cc02a1c6
2 changed files with 3 additions and 2 deletions

View File

@@ -58,6 +58,7 @@
<content_rating type="oars-1.1" />
<releases>
<release date="2025-09-06" version="6.0.5" />
<release date="2025-08-10" version="6.0.4" />
<release date="2025-06-18" version="6.0.3" />
<release date="2025-06-15" version="6.0.2" />

View File

@@ -18,8 +18,8 @@
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
DEV_VERSION = True
VERSION_TUPLE = (6, 0, 4)
DEV_VERSION = False
VERSION_TUPLE = (6, 0, 5)
VERSION_QUALIFIER = ""
VERSION = ".".join(map(str, VERSION_TUPLE)) + VERSION_QUALIFIER
major_version = "%s.%s" % (VERSION_TUPLE[0], VERSION_TUPLE[1])