From fee8b1eebae7d8e1eada21861f10a7e59d4acf73 Mon Sep 17 00:00:00 2001 From: Bernardo Gonzalez Kriegel Date: Sat, 22 Jun 2013 12:18:27 -0300 Subject: [PATCH] Database update for 3.10.7 release --- installer/data/mysql/updatedatabase.pl | 5 +++++ kohaversion.pl | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 59c6f79e8b..9bb7016c50 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -6265,6 +6265,11 @@ INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES ( SetVersion($DBversion); } +$DBversion = "3.10.07.000"; +if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { + print "Upgrade to $DBversion done (3.10.7 release)\n"; + SetVersion($DBversion); +} =head1 FUNCTIONS diff --git a/kohaversion.pl b/kohaversion.pl index 387908b67e..e4a4c93751 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.10.06.001'; + our $VERSION = '3.10.07.000'; # version needs to be set this way # so that it can be picked up by Makefile.PL # during install -- 2.39.5