634df1c76c
Squashed commit of the following: commit e9dd6e1dee03fe3503f7995b57510f9edfe6b333 Author: Chris Cormack <chrisc@catalyst.net.nz> Date: Wed Aug 19 08:14:53 2009 +0000 Version number commit df3ee5473e79b760a91c62b96d7ce19229e0fd27 Author: Chris Cormack <chrisc@catalyst.net.nz> Date: Wed Aug 19 08:08:11 2009 +0000 French systempref commit c4b036e4e43947d7d1fb9f2e18e460788cb4e1ec Author: Chris Cormack <chrisc@catalyst.net.nz> Date: Wed Aug 19 00:25:33 2009 +0000 Code to update the database, and updating the sysprefs.sql commit f74b942c24d5e9c33a4ec0e5ac706a0e347eb1a7 Author: Chris Cormack <chrisc@catalyst.net.nz> Date: Tue Aug 18 02:07:22 2009 +0000 Now hides the name on the detail screen too commit 53c80dbef88e360a4bbb78ecff3a6ca6ec401398 Author: Chris Cormack <chrisc@catalyst.net.nz> Date: Tue Aug 18 01:35:19 2009 +0000 Allowing the librarians to choose to hide the borrowers name on holds Signed-off-by: Galen Charlton <gmcharlt@gmail.com>
20 lines
659 B
Perl
20 lines
659 B
Perl
# the next koha public release version number;
|
|
# the kohaversion is divided in 4 parts :
|
|
# - #1 : the major number. 3 atm
|
|
# - #2 : the functionnal release. 00 atm
|
|
# - #3 : the subnumber, moves only on a public release
|
|
# - #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.
|
|
|
|
use strict;
|
|
|
|
sub kohaversion {
|
|
our $VERSION = '3.01.00.045';
|
|
# version needs to be set this way
|
|
# so that it can be picked up by Makefile.PL
|
|
# during install
|
|
return $VERSION;
|
|
}
|
|
|
|
1;
|