X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=kohaversion.pl;h=6a677517d5738a67cbb39e49e9e4d87ea03fe76e;hb=4f283bc0fab1469fa994a1313869452dc7ecda3d;hp=675f0958f43e46b5c13e38bdfc63030c80d13dbb;hpb=583baef555e2b8548598ce479957470b640b7ee9;p=koha_fer diff --git a/kohaversion.pl b/kohaversion.pl index 675f0958f4..6a677517d5 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.032"; + our $VERSION = "3.00.00.068"; + # version needs to be set this way + # so that it can be picked up by Makefile.PL + # during install + return $VERSION; } 1;