bump version for Koha 3.8.23 v3.08.23
authorGalen Charlton <gmc@esilibrary.com>
Fri, 7 Feb 2014 01:17:02 +0000 (01:17 +0000)
committerGalen Charlton <gmc@esilibrary.com>
Fri, 7 Feb 2014 01:17:02 +0000 (01:17 +0000)
Signed-off-by: Galen Charlton <gmc@esilibrary.com>

installer/data/mysql/updatedatabase.pl
kohaversion.pl

index f6741f6..026767b 100755 (executable)
@@ -5495,6 +5495,12 @@ if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
     SetVersion($DBversion);
 }
 
+$DBversion = "3.08.23.000";
+if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
+    print "Upgrade to $DBversion done (3.8.23 release)\n";
+    SetVersion($DBversion);
+}
+
 =head1 FUNCTIONS
 
 =head2 TableExists($table)
index c057299..a693a28 100644 (file)
@@ -16,7 +16,7 @@ the kohaversion is divided in 4 parts :
 use strict;
 
 sub kohaversion {
-    our $VERSION = '3.08.22.000';
+    our $VERSION = '3.08.23.000';
     # version needs to be set this way
     # so that it can be picked up by Makefile.PL
     # during install