X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=kohaversion.pl;h=5f23daa6de03384392a3feae63cff822e104673f;hb=356e48b67875252cd3532cd98d0191166b89a1e9;hp=9b16b5315e2052db0665f5d00893ee193edfba85;hpb=d695d0708edbb72df3c43231d6ece4b9bb13d89b;p=koha_fer diff --git a/kohaversion.pl b/kohaversion.pl index 9b16b5315e..5f23daa6de 100644 --- a/kohaversion.pl +++ b/kohaversion.pl @@ -7,8 +7,14 @@ # used by developers when the database changes. updatedatabase take care of the changes itself # and is automatically called by Auth.pm when needed. +use strict; + sub kohaversion { - return "3.00.00.027"; + our $VERSION = "3.00.00.089"; + # version needs to be set this way + # so that it can be picked up by Makefile.PL + # during install + return $VERSION; } 1;