mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-18 09:59:37 +01:00
a81ba775fc
Removed enable/disable commands; use factset instead. Add default_rate_limit registry entry. Add newlines to output of DualIndexHashable set() subroutine.
21 lines
304 B
Perl
21 lines
304 B
Perl
# File: VERSION.pm
|
|
# Author: pragma_
|
|
#
|
|
# Purpose: Keeps track of bot version.
|
|
|
|
# $Id$
|
|
|
|
package PBot::VERSION;
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
# These are set automatically by the build/commit script
|
|
use constant {
|
|
BUILD_NAME => "PBot",
|
|
BUILD_REVISION => 602,
|
|
BUILD_DATE => "2014-05-24",
|
|
};
|
|
|
|
1;
|