commit 49a718540f41e115bf30e6debb333ef1b9d4e42f parent 3487eb7a08966a5977bf88d2e3f91039d4ed1666 Author: Andreas Guldstrand <andreas.guldstrand@gmail.com> Date: Wed, 14 Feb 2018 16:38:07 +0100 SBO::Lib::App: add $VERSION statement Diffstat:
| M | SBO-Lib/lib/SBO/App.pm | | | 2 | ++ |
| M | SBO-Lib/lib/SBO/App/Remove.pm | | | 2 | ++ |
| M | SBO-Lib/lib/SBO/App/Snap.pm | | | 2 | ++ |
3 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/SBO-Lib/lib/SBO/App.pm b/SBO-Lib/lib/SBO/App.pm @@ -12,6 +12,8 @@ use strict; use warnings FATAL => 'all'; use File::Basename; +our $VERSION = '2.4'; + sub new { my $class = shift; diff --git a/SBO-Lib/lib/SBO/App/Remove.pm b/SBO-Lib/lib/SBO/App/Remove.pm @@ -15,6 +15,8 @@ use Getopt::Long qw(GetOptionsFromArray :config bundling); use parent 'SBO::App'; +our $VERSION = '2.4'; + sub _parse_opts { my $class = shift; my @ARGS = @_; diff --git a/SBO-Lib/lib/SBO/App/Snap.pm b/SBO-Lib/lib/SBO/App/Snap.pm @@ -18,6 +18,8 @@ use Getopt::Long qw/ GetOptionsFromArray /; use parent 'SBO::App'; +our $VERSION = '2.4'; + sub _parse_opts { my $class = shift; my @ARGS = @_;