From: Matt S Trout Date: Mon, 18 Feb 2019 17:31:37 +0000 (+0000) Subject: attempt to get this actually right this time X-Git-Tag: 0.62 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FTest-WWW-Mechanize-Catalyst.git;a=commitdiff_plain;h=HEAD attempt to get this actually right this time --- diff --git a/CHANGES b/CHANGES index f9192e4..5d7a6ff 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,8 @@ Revision history for Perl module Test::WWW::Mechanize::Catalyst: +0.62 Mon Feb 18 17:30 GMT 2019 + - The latest 'mst screwed up the last release' release + 0.61 Mon Feb 18 14:38 GMT 2019 - Add '.' to inc in Makefile.PL diff --git a/Makefile.PL b/Makefile.PL index f580d79..ba00272 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,5 +1,5 @@ #!perl -use lib '.'; +BEGIN { push @INC, '.' unless $INC[-1] eq '.' } use inc::Module::Install 0.87; use strict; diff --git a/lib/Test/WWW/Mechanize/Catalyst.pm b/lib/Test/WWW/Mechanize/Catalyst.pm index 1247d92..37cbe5d 100644 --- a/lib/Test/WWW/Mechanize/Catalyst.pm +++ b/lib/Test/WWW/Mechanize/Catalyst.pm @@ -13,7 +13,7 @@ extends 'Test::WWW::Mechanize', 'Moose::Object'; #use namespace::clean -except => 'meta'; -our $VERSION = '0.61'; +our $VERSION = '0.62'; our $APP_CLASS; my $Test = Test::Builder->new();