From: John Napiorkowski Date: Mon, 20 Jan 2020 01:21:41 +0000 (-0600) Subject: new release to fix busted distributopn X-Git-Tag: 5.90126^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=7e12141fc6cabc88ab929895a64388ab29e3b8eb new release to fix busted distributopn --- diff --git a/Changes b/Changes index 6eb0f29..553f87c 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ # This file documents the revision history for Perl extension Catalyst. +5.90126 - 2020-01-19 + - fix for broken distribution + 5.90125 - 2020-01-18 - Support samesite flag for cookies (mitchjacksontech++) - utility method on Catalyst::Action 'equals' diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 5d6635d..53183ed 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -207,7 +207,7 @@ sub composed_stats_class { __PACKAGE__->_encode_check(Encode::FB_CROAK | Encode::LEAVE_SRC); # Remember to update this in Catalyst::Runtime as well! -our $VERSION = '5.90125'; +our $VERSION = '5.90126'; $VERSION = eval $VERSION if $VERSION =~ /_/; # numify for warning-free dev releases sub import { diff --git a/lib/Catalyst/Plugin/Unicode/Encoding.pm b/lib/Catalyst/Plugin/Unicode/Encoding.pm index 76f277e..98f1f11 100644 --- a/lib/Catalyst/Plugin/Unicode/Encoding.pm +++ b/lib/Catalyst/Plugin/Unicode/Encoding.pm @@ -1,6 +1,6 @@ package Catalyst::Plugin::Unicode::Encoding; -our $VERSION = '5.90125'; +our $VERSION = '5.90126'; 1; diff --git a/lib/Catalyst/Runtime.pm b/lib/Catalyst/Runtime.pm index 1d3c75f..5069558 100644 --- a/lib/Catalyst/Runtime.pm +++ b/lib/Catalyst/Runtime.pm @@ -7,7 +7,7 @@ BEGIN { require 5.008003; } # Remember to update this in Catalyst as well! -our $VERSION = '5.90125'; +our $VERSION = '5.90126'; $VERSION = eval $VERSION if $VERSION =~ /_/; # numify for warning-free dev releases =head1 NAME