From 44cd06f1ac3bcc5023422002d54c816409036e42 Mon Sep 17 00:00:00 2001 From: Mason James Date: Mon, 26 Jan 2015 12:45:23 +1300 Subject: [PATCH] Bumping version number for 3.16.7 release --- installer/data/mysql/updatedatabase.pl | 9 +++++++-- kohaversion.pl | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 5663c2cea4..be53f25ade 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -8523,16 +8523,21 @@ if ( CheckVersion($DBversion) ) { $DBversion = "3.16.05.001"; if ( CheckVersion($DBversion) ) { - print "Upgrade to $DBversion done (3.16.5.001 release)\n"; + print "Upgrade to $DBversion done (3.16.5.1 release)\n"; SetVersion ($DBversion); } $DBversion = "3.16.06.000"; if ( CheckVersion($DBversion) ) { - print "Upgrade to $DBversion done (3.16.6.000 release)\n"; + print "Upgrade to $DBversion done (3.16.6 release)\n"; SetVersion ($DBversion); } +$DBversion = "3.16.07.000"; +if ( CheckVersion($DBversion) ) { + print "Upgrade to $DBversion done (3.16.7 release)\n"; + SetVersion ($DBversion); +} =head1 FUNCTIONS diff --git a/kohaversion.pl b/kohaversion.pl index 9e094922a5..c2b6bbe729 100644 --- a/kohaversion.pl +++ b/kohaversion.pl @@ -16,7 +16,7 @@ the kohaversion is divided in 4 parts : use strict; sub kohaversion { - our $VERSION = '3.16.06.000'; + our $VERSION = '3.16.07.000'; # version needs to be set this way # so that it can be picked up by Makefile.PL # during install -- 2.39.5