DBRev 17.05.00.000
authorKyle M Hall <kyle@bywatersolutions.com>
Tue, 30 May 2017 03:09:24 +0000 (03:09 +0000)
committerKyle M Hall <kyle@bywatersolutions.com>
Tue, 30 May 2017 03:14:40 +0000 (03:14 +0000)
Koha.pm
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index bd87bad..cbf4cb2 100644 (file)
--- a/Koha.pm
+++ b/Koha.pm
@@ -29,7 +29,7 @@ use vars qw{ $VERSION };
 # - #4 : the developer version. The 4th number is the database subversion.
 #        used by developers when the database changes. updatedatabase take care of the changes itself
 #        and is automatically called by Auth.pm when needed.
-$VERSION = "16.12.00.039";
+$VERSION = "17.05.00.000";
 
 sub version {
     return $VERSION;
index 8a6c744..5a46f6a 100755 (executable)
@@ -14515,6 +14515,13 @@ if( CheckVersion( $DBversion ) ) {
     print "Upgrade to $DBversion done (Bug 18600 - Missing db update for TalkingTechItivaPhoneNotification)\n";
 }
 
+$DBversion = '17.05.00.000';
+if( CheckVersion( $DBversion ) ) {
+
+    SetVersion( $DBversion );
+    print "Upgrade to $DBversion done (Koha 17.05)\n";
+}
+
 # DEVELOPER PROCESS, search for anything to execute in the db_update directory
 # SEE bug 13068
 # if there is anything in the atomicupdate, read and execute it.