From 726e0e4e1bf12a611d074a84aa1fa65470ca8bf4 Mon Sep 17 00:00:00 2001 From: Tobias Bossert Date: Tue, 25 Jan 2022 15:58:26 +0100 Subject: [PATCH 1/2] manifest cleanup --- MANIFEST | 3 --- 1 file changed, 3 deletions(-) diff --git a/MANIFEST b/MANIFEST index d09dc84..9f1a42f 100644 --- a/MANIFEST +++ b/MANIFEST @@ -5,8 +5,5 @@ LICENSE Makefile.PL MANIFEST This list of files MANIFEST.SKIP -MANIFEST.skip -Mojolicious-Command-coverage-0.0.1/META.json -Mojolicious-Command-coverage-0.0.1/META.yml README.md VERSION From 1d2938d05bae6cd2fbd798d64ce292a948739269 Mon Sep 17 00:00:00 2001 From: Tobias Bossert Date: Fri, 11 Feb 2022 12:57:46 +0100 Subject: [PATCH 2/2] version++, resolves #2 --- .gitignore | 4 +++- CHANGES | 4 ++++ Makefile.PL | 4 ++-- README.md | 4 +++- VERSION | 2 +- cpanfile | 6 +++--- lib/Mojolicious/Command/coverage.pm | 2 +- 7 files changed, 17 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index b7c82e4..b9464f6 100644 --- a/.gitignore +++ b/.gitignore @@ -7,4 +7,6 @@ Makefile *.tar.gz cover_db MYMETA.* -*.iml \ No newline at end of file +*.iml +blib +pm_to_blib \ No newline at end of file diff --git a/CHANGES b/CHANGES index 3a2f700..f23d813 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,7 @@ +0.0.2 2022-02-11 12:52:26 +0100 Tobias Bossert + - Repo updates + - Constrained dependency versions + 0.0.1 2022-01-25 13:30:48 +0100 Tobias Bossert - initial release diff --git a/Makefile.PL b/Makefile.PL index f0c7fa3..d0cb192 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -31,8 +31,8 @@ WriteMakefile( requires => { perl => '5.020000' }, resources => { license => 'https://opensource.org/licenses/mit', - repository => 'https://github.com/oposs/mojolicious_coverage', - bugtracker => 'https://github.com/oposs/mojolicious_coverage/issues' + repository => 'https://github.com/oposs/mojolicious-command-coverage', + bugtracker => 'https://github.com/oposs/mojolicious-command-coverage/issues' }, no_index => { directory => [ 't' ] }, homepage => 'https://www.oetiker.ch', diff --git a/README.md b/README.md index 85f99b8..69b6eb8 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,6 @@ -# mojolicious_coverage +# Mojolicious::Command::coverage + +![https://metacpan.org/pod/Mojolicious::Command::coverage](https://img.shields.io/cpan/v/Mojolicious-Command-coverage) Start you Mojo app in coverage mode diff --git a/VERSION b/VERSION index 8a9ecc2..7bcd0e3 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.0.1 \ No newline at end of file +0.0.2 \ No newline at end of file diff --git a/cpanfile b/cpanfile index 2cfa276..2578315 100644 --- a/cpanfile +++ b/cpanfile @@ -1,3 +1,3 @@ -requires 'Mojolicious'; -requires 'Devel::Cover'; -requires 'Devel::Deanonymize'; \ No newline at end of file +requires 'Mojolicious', '>=8.50'; +requires 'Devel::Cover', '>=1.36'; +requires 'Devel::Deanonymize','>= 0.2.0';; \ No newline at end of file diff --git a/lib/Mojolicious/Command/coverage.pm b/lib/Mojolicious/Command/coverage.pm index 2462c01..e558b8c 100644 --- a/lib/Mojolicious/Command/coverage.pm +++ b/lib/Mojolicious/Command/coverage.pm @@ -4,7 +4,7 @@ use warnings FATAL => 'all'; use Mojo::Base 'Mojolicious::Command', -signatures; use Mojo::Util qw(getopt); -our $VERSION = "0.0.0"; # Do not update manually +our $VERSION = "0.0.2"; # Do not update manually # Short description has description => 'Start you Mojo app in coverage mode';