summaryrefslogtreecommitdiff
path: root/FS/FS.pm
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2012-06-02 16:46:04 -0700
committerIvan Kohler <ivan@freeside.biz>2012-06-02 16:46:04 -0700
commit9c021c0763dd09b8457d16389d693fdfe858ca82 (patch)
tree57d30384d9b9a48f6c910c27fc5f580fc2905b08 /FS/FS.pm
parent2e3d2bfad1cea570978aec44441fd79ec75c28ec (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 e169166..8bbff12 100644
--- a/FS/FS.pm
+++ b/FS/FS.pm
@@ -3,7 +3,7 @@ package FS;
use strict;
use vars qw($VERSION);
-$VERSION = '%%%VERSION%%%';
+$VERSION = '3.0git';
#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