summaryrefslogtreecommitdiff
path: root/FS/FS.pm
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2012-06-02 16:46:23 -0700
committerIvan Kohler <ivan@freeside.biz>2012-06-02 16:46:23 -0700
commitcc5ca73c6c5b391d6e27fa60cb586581de953d4e (patch)
treeb23f86d4af35eb2d9d3a995b09fc9d351b256861 /FS/FS.pm
parentfe6f5882d1e745aa7d01758caf29d6ae1f7e137b (diff)
keep version in FS.pm instead of Makefile
Diffstat (limited to 'FS/FS.pm')
-rw-r--r--FS/FS.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS.pm b/FS/FS.pm
index c3a1ac2f6..1aa10c1a8 100644
--- a/FS/FS.pm
+++ b/FS/FS.pm
@@ -3,7 +3,7 @@ package FS;
use strict;
use vars qw($VERSION);
-$VERSION = '%%%VERSION%%%';
+$VERSION = '2.3.3';
#find missing entries in this file with:
# for a in `ls *pm | cut -d. -f1`; do grep 'L<FS::'$a'>' ../FS.pm >/dev/null || echo "missing $a" ; done