Bug 11603: Fix encoding issues (bug 11944 is now pushed)
[koha.git] / Koha.pm
diff --git a/Koha.pm b/Koha.pm
index 6560e61..19fa67d 100644 (file)
--- a/Koha.pm
+++ b/Koha.pm
@@ -1,5 +1,23 @@
 package Koha;
 
+# Copyright 2015 BibLibre
+# Copyright 2015 Theke Solutions
+#
+# This file is part of Koha.
+#
+# Koha is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# Koha is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with Koha; if not, see <http://www.gnu.org/licenses>.
+
 use Modern::Perl;
 
 use vars qw{ $VERSION };
@@ -11,10 +29,40 @@ 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 = "3.19.00.038";
+$VERSION = "3.21.00.002";
 
 sub version {
     return $VERSION;
 }
 
 1;
+
+=head1 NAME
+
+Koha - The world's first free and open source library system.
+
+=head1 SYNOPSIS
+
+At the moment this module only provides a version subroutine.
+
+=head1 METHODS
+
+=head2 version
+
+    use Koha;
+
+    my $version = Koha::version;
+
+=head1 SEE ALSO
+
+C4::Context
+
+kohaversion.pl
+
+=head1 AUTHORS
+
+Jonathan Druart <jonathan.druart@biblibre.com>
+
+Tomas Cohen Arazi <tomascohen@gmail.com>
+
+=cut