Increment version for 18.11.06 release
authorMartin Renvoize <martin.renvoize@ptfs-europe.com>
Fri, 31 May 2019 06:51:09 +0000 (07:51 +0100)
committerMartin Renvoize <martin.renvoize@ptfs-europe.com>
Fri, 31 May 2019 06:51:09 +0000 (07:51 +0100)
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

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

diff --git a/Koha.pm b/Koha.pm
index 4104940..797a88a 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.11.05.001";
+$VERSION = "18.11.06.000";
 
 sub version {
     return $VERSION;
index a2c5a66..b471a55 100755 (executable)
@@ -17452,7 +17452,7 @@ if ( CheckVersion($DBversion) ) {
     SetVersion($DBversion);
 }
 
-$DBversion = '18.12.05.001';
+$DBversion = '18.11.05.001';
 if( CheckVersion( $DBversion ) ) {
 
     unless ( foreign_key_exists( 'tmp_holdsqueue', 'tmp_holdsqueue_ibfk_1' ) ) {
@@ -17471,6 +17471,12 @@ if( CheckVersion( $DBversion ) ) {
     print "Upgrade to $DBversion done (Bug 22899 - Add items constraint to tmp_holdsqueue)\n";
 }
 
+$DBversion = "18.11.06.000";
+if ( CheckVersion($DBversion) ) {
+    print "Upgrade to $DBversion done (18.11.06 release)\n";
+    SetVersion($DBversion);
+}
+
 # SEE bug 13068
 # if there is anything in the atomicupdate, read and execute it.