From 26ddb200837f7b7918e3a49cebf88671673c1cf3 Mon Sep 17 00:00:00 2001 From: Chris Cormack Date: Sat, 23 Feb 2013 17:42:52 +1300 Subject: [PATCH] Updating DB version for release --- 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 07ebd8af57..eed6e14684 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -6138,6 +6138,12 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) { SetVersion ($DBversion); } +$DBversion = "3.10.03.000"; +if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { + print "Upgrade to $DBversion done (3.10.3 release)\n"; + SetVersion($DBversion); +} + =head1 FUNCTIONS =head2 TableExists($table) diff --git a/kohaversion.pl b/kohaversion.pl index 6164939e41..77946d624a 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.02.002'; + our $VERSION = '3.10.03.000'; # version needs to be set this way # so that it can be picked up by Makefile.PL # during install -- 2.39.5