From eec142074bf1ca283db09b21c12232d1b634fe76 Mon Sep 17 00:00:00 2001 From: Chris Nighswonger Date: Sun, 15 May 2011 14:36:50 -0400 Subject: [PATCH] Updating Version Number to 3.02.08.000 --- installer/data/mysql/updatedatabase.pl | 6 ++++++ kohaversion.pl | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 85e8217642..13dda8ba88 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -4062,6 +4062,12 @@ if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { SetVersion($DBversion); } +$DBversion = '3.02.08.000'; +if (C4::Context->preference("Version") < TransformToNum($DBversion)) { + print "Upgrade to $DBversion done (Incrementing version for 3.2.8 release. See release notes for details.)\n"; + SetVersion ($DBversion); +} + =head1 FUNCTIONS =head2 DropAllForeignKeys($table) diff --git a/kohaversion.pl b/kohaversion.pl index 7f317b5e08..99a4d68bba 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.02.07.003'; + our $VERSION = '3.02.08.000'; # version needs to be set this way # so that it can be picked up by Makefile.PL # during install -- 2.39.5