X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=kohaversion.pl;h=9a9221fee6c745cd30a14a26e8036c456b2784a6;hb=dff4d760f68c88c3cffa8af063a154c6b3f9e37f;hp=bb327dae6930a36a1edc1a8047bd56a0f2c1de0d;hpb=46d77f44618b7d5c3b9d80008b282c43b9bfbc02;p=koha_fer diff --git a/kohaversion.pl b/kohaversion.pl index bb327dae69..9a9221fee6 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.034"; + our $VERSION = '3.01.00.001'; + # version needs to be set this way + # so that it can be picked up by Makefile.PL + # during install + return $VERSION; } 1;