You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
438 B
23 lines
438 B
package ksb::Version; |
|
|
|
# Pretty much just records the program-wide version number... |
|
|
|
use strict; |
|
use warnings; |
|
use 5.014; |
|
|
|
# It is expected that future git tags will be in the form 'YY.MM' and will |
|
# be time-based instead of event-based as with previous releases. |
|
our $VERSION = '16.05'; |
|
|
|
our $SCRIPT_VERSION = $VERSION; |
|
|
|
use Exporter qw(import); |
|
our @EXPORT = qw(scriptVersion); |
|
|
|
sub scriptVersion() |
|
{ |
|
return $SCRIPT_VERSION; |
|
} |
|
|
|
1;
|
|
|