From 1880cc14e834f8c40c206f1500968b3f5b001501 Mon Sep 17 00:00:00 2001 From: Chris Nighswonger Date: Mon, 29 Nov 2010 14:43:24 -0500 Subject: [PATCH] Updating Version Number to 3.02.01.000 Updating version number for 3.2.1 release. Signed-off-by: Chris Nighswonger --- 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 62e7991329..5d40b31771 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -3842,6 +3842,12 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) { SetVersion ($DBversion); } +$DBversion = '3.02.01.000'; +if (C4::Context->preference("Version") < TransformToNum($DBversion)) { + print "Upgrade to $DBversion done (Incrementing version for 3.2.1 release.)\n"; + SetVersion ($DBversion); +} + =head1 FUNCTIONS =head2 DropAllForeignKeys($table) diff --git a/kohaversion.pl b/kohaversion.pl index a506d9b544..906de0c3e6 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.00.007'; + our $VERSION = '3.02.01.000'; # version needs to be set this way # so that it can be picked up by Makefile.PL # during install -- 2.39.5