summaryrefslogtreecommitdiff
path: root/FS/FS.pm
diff options
context:
space:
mode:
authorJeremy Davis <jeremyd@freeside.biz>2016-02-11 09:39:54 -0500
committerJeremy Davis <jeremyd@freeside.biz>2016-02-11 09:39:54 -0500
commit7a24977570328ce710e55d13cfd0fe5c5c40e67a (patch)
treef0ce0304d6b8771eab8401476034fe8e322dd44e /FS/FS.pm
parent29fb80073eb21f453515618f01d2c0d03a3004ec (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 9c36f87f7..134a34cb2 100644
--- a/FS/FS.pm
+++ b/FS/FS.pm
@@ -3,7 +3,7 @@ package FS;
use strict;
use vars qw($VERSION);
-$VERSION = '5.0git';
+$VERSION = '5.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