Koha 18.06 - It's Adventure time!
authorNick Clemens <nick@bywatersolutions.com>
Fri, 25 May 2018 16:54:31 +0000 (16:54 +0000)
committerNick Clemens <nick@bywatersolutions.com>
Fri, 25 May 2018 16:54:31 +0000 (16:54 +0000)
There was once an ILS from New Zealand
They said "How hard could it be?" and
So we all came together
To help make it better
Come join us! The adventure will be grand!

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Koha.pm
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index 9ed8119..37b9ef1 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.05.00.000";
+$VERSION = "18.06.00.000";
 
 sub version {
     return $VERSION;
index 415fec0..0c1f41f 100755 (executable)
@@ -16051,6 +16051,12 @@ if( CheckVersion( $DBversion ) ) {
     print "Upgrade to $DBversion done (Koha 18.05)\n";
 }
 
+$DBversion = '18.06.00.000';
+if( CheckVersion( $DBversion ) ) {
+    SetVersion( $DBversion );
+    print "Upgrade to $DBversion done (Koha 18.06 - It's Adventure time!)\n";
+}
+
 # SEE bug 13068
 # if there is anything in the atomicupdate, read and execute it.