summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbin/ssic5
1 files changed, 4 insertions, 1 deletions
diff --git a/bin/ssic b/bin/ssic
index ea0a838..34f3502 100755
--- a/bin/ssic
+++ b/bin/ssic
@@ -12,6 +12,9 @@ use warnings;
use Getopt::Long;
use CGI::SSI;
+my $VERSION;
+$VERSION = '1.0.0';
+
sub main
{
my %opts;
@@ -89,7 +92,7 @@ sub version
{
my ($fh) = @_;
- print("ssic 0.1.0\n");
+ printf("ssic %s\n", $VERSION);
print("Copyright (C) 2013 Patrick \"P. J.\" McDermott\n");
print("License GPLv3+: GNU GPL version 3 or later " .
"<http://gnu.org/licenses/gpl.html>.\n");