From c6074d5da54b3aed71c70bd6fafbd0c18a11206f Mon Sep 17 00:00:00 2001 From: Chris Cormack Date: Wed, 23 Jan 2013 10:10:38 +1300 Subject: [PATCH] Bumping db version number 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 14c1e87f91..7bc42b867e 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -6082,6 +6082,12 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) { SetVersion ($DBversion); } +$DBversion = "3.10.02.00"; +if (C4::Context->preference("Version") < TransformToNum($DBversion)) { + print "Upgrade to $DBversion done (3.10.2 release)\n"; + SetVersion ($DBversion); +} + =head1 FUNCTIONS =head2 TableExists($table) diff --git a/kohaversion.pl b/kohaversion.pl index e205d12ada..a5ad3f0f77 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.01.000'; + our $VERSION = '3.10.02.000'; # version needs to be set this way # so that it can be picked up by Makefile.PL # during install -- 2.39.5