From d222047cae6d19f9d7efa7da733012616bd2265d Mon Sep 17 00:00:00 2001 From: Jared Camins-Esakov Date: Wed, 20 Mar 2013 10:12:58 -0400 Subject: [PATCH] Increment version for 3.12-alpha2 release This commit message also adds missing sponsors: Sponsored-by: Arcadia Public Library Sponsored-by: Athens County Public Libraries Sponsored-by: Rolling Hills Consolidated Libraries --- 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 dbb3faadf0..61a23f78e8 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -6531,6 +6531,7 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) { print "Upgrade to $DBversion done (3.12-alpha release)\n"; SetVersion ($DBversion); } + $DBversion = "3.11.00.101"; if ( CheckVersion($DBversion) ) { $dbh->do("INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES ('UNIMARCAuthorsFacetsSeparator',', ', 'UNIMARC authors facets separator', NULL, 'short')"); @@ -6557,6 +6558,12 @@ if ( CheckVersion($DBversion) ) { SetVersion($DBversion); } +$DBversion = "3.11.00.104"; +if (C4::Context->preference("Version") < TransformToNum($DBversion)) { + print "Upgrade to $DBversion done (3.12-alpha2 release)\n"; + SetVersion ($DBversion); +} + =head1 FUNCTIONS =head2 TableExists($table) diff --git a/kohaversion.pl b/kohaversion.pl index 0545960316..b51d6e8630 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.103'; + our $VERSION = '3.11.00.104'; # version needs to be set this way # so that it can be picked up by Makefile.PL # during install -- 2.39.5