From e24f8817e9c14d0f37c79eb4a499adc05b9284bb Mon Sep 17 00:00:00 2001 From: Jared Camins-Esakov Date: Tue, 21 Aug 2012 21:07:00 -0400 Subject: [PATCH] Bump version for 3.6.8 --- 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 1382337d99..bbf4455fcc 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -4713,6 +4713,13 @@ if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { SetVersion($DBversion); } +$DBversion = "3.06.08.000"; +if (C4::Context->preference("Version") < TransformToNum($DBversion)) { + print "Upgrade to $DBversion done (Incrementing version for 3.6.8 release. See release notes for details.) \n"; + SetVersion ($DBversion); +} + + =head1 FUNCTIONS =head2 DropAllForeignKeys($table) diff --git a/kohaversion.pl b/kohaversion.pl index e9a604658f..c1ca213eaf 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.06.07.001'; + our $VERSION = '3.06.08.000'; # version needs to be set this way # so that it can be picked up by Makefile.PL # during install -- 2.39.5