X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;ds=sidebyside;f=kohaversion.pl;h=3af7c3411d4623c7f409d6912fd66c7edaa44702;hb=c964642511d3b4ddf71e74c1b30b639c47d9ec97;hp=675f0958f43e46b5c13e38bdfc63030c80d13dbb;hpb=583baef555e2b8548598ce479957470b640b7ee9;p=koha.git diff --git a/kohaversion.pl b/kohaversion.pl index 675f0958f4..3af7c3411d 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.05.001'; + # version needs to be set this way + # so that it can be picked up by Makefile.PL + # during install + return $VERSION; } 1;