summaryrefslogtreecommitdiff
path: root/FS/FS.pm
diff options
context:
space:
mode:
authorJeremy Davis <jeremyd@freeside.biz>2016-02-11 09:43:40 -0500
committerJeremy Davis <jeremyd@freeside.biz>2016-02-11 09:43:40 -0500
commit13853c927c908a24dac994d57c1f63572e316253 (patch)
treedd7f13eb7313babaa1a5f6d4996f416b75590105 /FS/FS.pm
parente532e861dc162cab86905907e743ae15b315dca3 (diff)
Ticket #39615 Fix versions for upgrades
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 04311e57d..85c8043ed 100644
--- a/FS/FS.pm
+++ b/FS/FS.pm
@@ -3,7 +3,7 @@ package FS;
use strict;
use vars qw($VERSION);
-$VERSION = '4.0git';
+$VERSION = '4.0~git';
#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