From 6100d8745c3550e5e99fc2c909db31d20d12461b Mon Sep 17 00:00:00 2001 From: Jared Camins-Esakov Date: Sun, 17 Mar 2013 09:30:26 -0400 Subject: [PATCH] Increment version for 3.12-alpha release --- 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 cca1b120cd..f0a926961e 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -6526,6 +6526,11 @@ if ( CheckVersion($DBversion) ) { SetVersion($DBversion); } +$DBversion = '3.11.00.100'; +if (C4::Context->preference("Version") < TransformToNum($DBversion)) { + print "Upgrade to $DBversion done (3.12-alpha release)\n"; + SetVersion ($DBversion); +} =head1 FUNCTIONS diff --git a/kohaversion.pl b/kohaversion.pl index 57ed354b61..aafce46843 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.11.00.030'; + our $VERSION = '3.11.00.100'; # version needs to be set this way # so that it can be picked up by Makefile.PL # during install