Skip to content

Commit

Permalink
tags cleaning
Browse files Browse the repository at this point in the history
  • Loading branch information
z-eos committed Sep 2, 2020
1 parent a64627e commit a3742e0
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 12 deletions.
3 changes: 2 additions & 1 deletion MYMETA.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
"File::Basename" : "2.00",
"Getopt::Long" : "2.00",
"JSON" : "2.00",
"LWP::Protocol::https" : "6.00",
"LWP::UserAgent" : "6.00",
"Pod::Usage" : "1.00",
"Time::Piece" : "1.05",
Expand All @@ -51,6 +52,6 @@
"web" : "https://github.com/z-eos/gqmt.git"
}
},
"version" : "0.3",
"version" : "0.6",
"x_serialization_backend" : "JSON::PP version 4.04"
}
3 changes: 2 additions & 1 deletion MYMETA.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,12 @@ requires:
File::Basename: '2.00'
Getopt::Long: '2.00'
JSON: '2.00'
LWP::Protocol::https: '6.00'
LWP::UserAgent: '6.00'
Pod::Usage: '1.00'
Time::Piece: '1.05'
perl: '5.016001'
resources:
repository: ssh://[email protected]:z-eos/gqmt.git
version: '0.3'
version: '0.6'
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
15 changes: 8 additions & 7 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,14 @@ WriteMakefile(
LICENSE => 'gpl_3',
MIN_PERL_VERSION => 5.016001,
PREREQ_PM => {
'Data::Printer' => '0.38',
'File::Basename' => '2.00',
'Getopt::Long' => '2.00',
'JSON' => '2.00',
'LWP::UserAgent' => '6.00',
'Pod::Usage' => '1.00',
'Time::Piece' => '1.05',
'Data::Printer' => '0.38',
'File::Basename' => '2.00',
'Getopt::Long' => '2.00',
'JSON' => '2.00',
'LWP::UserAgent' => '6.00',
'LWP::Protocol::https' => '6.00',
'Pod::Usage' => '1.00',
'Time::Piece' => '1.05',
},
(eval { ExtUtils::MakeMaker->VERSION(6.46) } ? (META_MERGE => {
'meta-spec' => { version => 2 },
Expand Down
4 changes: 2 additions & 2 deletions gqmt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use warnings;
use diagnostics;

use Data::Printer caller_info => 1, print_escapes => 1, output => 'stdout', class => { expand => 2 };
use Getopt::Long qw(:config no_ignore_case gnu_getopt auto_help auto_version);;
use Getopt::Long qw(:config no_ignore_case gnu_getopt auto_help auto_version);
use Pod::Usage qw(pod2usage);
use File::Basename;
use LWP::UserAgent;
Expand All @@ -16,7 +16,7 @@ use Time::Piece;

my @PROGARG = ($0, @ARGV);
my $PROGNAM = fileparse($0);
our $VERSION = '0.5';
our $VERSION = '0.6';

my $caller_message = "Printing in line __LINE__ of __FILENAME__; ";

Expand Down
2 changes: 1 addition & 1 deletion lib/App/gqmt.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package App::gqmt;

our $VERSION = '0.5';
our $VERSION = '0.6';

=head1 NAME
Expand Down

0 comments on commit a3742e0

Please sign in to comment.