From bcb806b0e428180eae1906620367f861c5d95fb0 Mon Sep 17 00:00:00 2001 From: Chris Cormack Date: Fri, 22 Mar 2013 21:28:09 +1300 Subject: [PATCH] Bumping the db version for a release --- installer/data/mysql/updatedatabase.pl | 7 ++++++- kohaversion.pl | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index b6dbb4ca3c..063f7563f7 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -5304,7 +5304,7 @@ if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { $DBversion = "3.08.10.000"; if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { - print "Upgrade to $DBversion (3.8.9 release) done\n"; + print "Upgrade to $DBversion (3.8.10 release) done\n"; SetVersion($DBversion); } @@ -5325,6 +5325,11 @@ if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { SetVersion($DBversion); } +$DBversion = "3.08.11.000"; +if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { + print "Upgrade to $DBversion (3.8.11 release) done\n"; + SetVersion($DBversion); +} =head1 FUNCTIONS diff --git a/kohaversion.pl b/kohaversion.pl index 77e7f93917..37c827dffe 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.08.10.002'; + our $VERSION = '3.08.11.000'; # version needs to be set this way # so that it can be picked up by Makefile.PL # during install -- 2.39.5