Updating version number for release
authorChris Cormack <chrisc@catalyst.net.nz>
Fri, 21 Oct 2011 21:26:13 +0000 (10:26 +1300)
committerChris Cormack <chrisc@catalyst.net.nz>
Fri, 21 Oct 2011 21:26:13 +0000 (10:26 +1300)
installer/data/mysql/updatedatabase.pl
kohaversion.pl

index 9939305..a8cd166 100755 (executable)
@@ -4544,6 +4544,11 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
     SetVersion($DBversion);
 }
 
+$DBversion = "3.06.00.000";
+if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
+    print "Upgrade to $DBversion done Koha 3.4.0 release \n";
+    SetVersion ($DBversion);
+}
 
 =head1 FUNCTIONS
 
index 29a8b27..9075247 100644 (file)
@@ -16,7 +16,7 @@ the kohaversion is divided in 4 parts :
 use strict;
 
 sub kohaversion {
-    our $VERSION = '3.05.00.023';
+    our $VERSION = '3.06.00.000';
     # version needs to be set this way
     # so that it can be picked up by Makefile.PL
     # during install