From 503d5b09c02d1c76f50be47bc29d8d08b1cc997f Mon Sep 17 00:00:00 2001 From: Chris Cormack Date: Tue, 23 Apr 2013 21:24:21 +1200 Subject: [PATCH] Bumpding database version --- installer/data/mysql/updatedatabase.pl | 7 +++++++ kohaversion.pl | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 43b5f55511..4fc5e0ac77 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -5355,6 +5355,13 @@ if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { SetVersion ($DBversion); } +$DBversion = "3.08.12.000"; +if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { + print "Upgrade to $DBversion (3.8.12 release) done\n"; + SetVersion($DBversion); +} + + =head1 FUNCTIONS =head2 TableExists($table) diff --git a/kohaversion.pl b/kohaversion.pl index 25639191e9..d099fd7d60 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.08.11.002'; + our $VERSION = '3.08.12.000'; # version needs to be set this way # so that it can be picked up by Makefile.PL # during install -- 2.39.5