Increment version for 19.05.00 release
authorNick Clemens <nick@bywatersolutions.com>
Thu, 30 May 2019 13:42:23 +0000 (13:42 +0000)
committerNick Clemens <nick@bywatersolutions.com>
Thu, 30 May 2019 13:42:23 +0000 (13:42 +0000)
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>

Koha.pm
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index 80d0a8b..012cb62 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 = "18.12.00.075";
+$VERSION = "19.05.00.000";
 
 sub version {
     return $VERSION;
index e6cba43..7afdddd 100755 (executable)
@@ -18676,6 +18676,13 @@ if( CheckVersion( $DBversion ) ) {
     print "Upgrade to $DBversion done (Bug 22899 - Add items constraint to tmp_holdsqueue)\n";
 }
 
+$DBversion = '19.05.00.000';
+if( CheckVersion( $DBversion ) ) {
+    SetVersion( $DBversion );
+    print "Upgrade to $DBversion done (19.05.00 release)\n";
+}
+
+
 # SEE bug 13068
 # if there is anything in the atomicupdate, read and execute it.