From c9fc4d92f175f1d39d6d059453eab7be1c1ae308 Mon Sep 17 00:00:00 2001 From: Chris Nighswonger Date: Tue, 25 Oct 2011 20:06:11 -0400 Subject: [PATCH] Updating Version Number to 3.04.05.003 Also fixing up two typos in db version numbers --- installer/data/mysql/updatedatabase.pl | 4 ++-- kohaversion.pl | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index af71c65fa6..26aef27714 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -4432,14 +4432,14 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) { SetVersion($DBversion); } -$DBversion = "3.04.00.002"; +$DBversion = "3.04.05.002"; if (C4::Context->preference("Version") < TransformToNum($DBversion)) { $dbh->do("CREATE TABLE need_merge_authorities (id int NOT NULL auto_increment PRIMARY KEY, authid bigint NOT NULL, done tinyint DEFAULT 0) ENGINE=InnoDB DEFAULT CHARSET=utf8"); print "Upgrade to $DBversion done (6094: Fixing ModAuthority problems, add a need_merge_authorities table)\n"; SetVersion($DBversion); } -$DBversion = "3.04.00.003"; +$DBversion = "3.04.05.003"; if (C4::Context->preference("Version") < TransformToNum($DBversion)) { $dbh->do("INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('BorrowingHistoryLink','circhist','When showing borrower history for an item on the catalogue page, link to borrower','detail|circhist','Choice')"); print "Add the system preference 'BorrowingHistoryLink' (bug 6905)\n"; diff --git a/kohaversion.pl b/kohaversion.pl index 28c0fd62bb..03961a97d7 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.04.05.002'; + our $VERSION = '3.04.05.003'; # version needs to be set this way # so that it can be picked up by Makefile.PL # during install -- 2.39.5