mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-18 09:59:37 +01:00
1ec463f021
This allows the more natural "replace 'a' with 'b' and 'c' with 'd'" syntax rather than the previous syntax of "replace 'a' with 'b' and replace 'c' with 'd'"
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 => 536,
|
|
BUILD_DATE => "2014-04-01",
|
|
};
|
|
|
|
1;
|