From 6ef179dc69e07332e8dadb1dbd8e0240a23f1f6a Mon Sep 17 00:00:00 2001 From: Chris Cormack Date: Fri, 22 Mar 2013 21:49:40 +1300 Subject: [PATCH] Bumping database version --- 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 705d705cf2..c47cd3bebd 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -6168,6 +6168,11 @@ if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { SetVersion($DBversion); } +$DBversion = "3.10.04.000"; +if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { + print "Upgrade to $DBversion done (3.10.4 release)\n"; + SetVersion($DBversion); +} =head1 FUNCTIONS diff --git a/kohaversion.pl b/kohaversion.pl index 9543047cdb..856f4fc78f 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.03.003'; + our $VERSION = '3.10.04.000'; # version needs to be set this way # so that it can be picked up by Makefile.PL # during install -- 2.39.5