diff --git a/Changes b/Changes index 15ba5e394..9e09edc51 100644 --- a/Changes +++ b/Changes @@ -1,8 +1,20 @@ Go to http://github.com/plack/Plack/issues for the roadmap and known issues. {{$NEXT}} + +1.0025 2013-06-12 13:08:58 PDT + [INCOMPATIBLE CHANGES] + - No XS! Eliminates dependency to LWP::UserAgent by making it completely optional for + testing. If you run Plack::Test with Server implemenetation or run Plack::Test::Suite + (for PSGI handlers) without LWP installed, the tests will automatically be skipped. + This removes the eventual sub-dependency to HTML::Parser, which is the only XS dependency + in Plack. #408 + [IMPROVEMENTS] - - $res->to_app shortcut (ether) + - Fixed the warning in OO usage of Plack::Builder (doy) #407 + - Shotgun loader now dies if used in Win32 since it leaks memory #320, #400 + - Suppress warnings for Test::TCP (kazeburo) #406 + - $res->to_app shortcut (ether) #409 1.0024 2013-05-01 10:05:56 PDT [IMPROVEMENTS] diff --git a/META.json b/META.json index e854394d8..7a6a03b2d 100644 --- a/META.json +++ b/META.json @@ -81,7 +81,7 @@ } } }, - "release_status" : "stable", + "release_status" : "testing", "resources" : { "bugtracker" : { "web" : "https://github.com/plack/Plack/issues" @@ -93,7 +93,7 @@ "web" : "https://github.com/plack/Plack" } }, - "version" : "1.0024", + "version" : "1.0025", "x_authority" : "cpan:MIYAGAWA", "x_contributors" : [ "Aaron Trevena ", diff --git a/Makefile.PL b/Makefile.PL index 238cc294b..db41f9c14 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -44,7 +44,7 @@ my %WriteMakefileArgs = ( "Test::More" => "0.88", "Test::Requires" => 0 }, - "VERSION" => "1.0024", + "VERSION" => "1.0025", "test" => { "TESTS" => "t/*.t t/HTTP-Message-PSGI/*.t t/HTTP-Server-PSGI/*.t t/Plack-Builder/*.t t/Plack-HTTPParser-PP/*.t t/Plack-Handler/*.t t/Plack-Loader/*.t t/Plack-MIME/*.t t/Plack-Middleware/*.t t/Plack-Middleware/cascade/*.t t/Plack-Middleware/recursive/*.t t/Plack-Middleware/stacktrace/*.t t/Plack-Request/*.t t/Plack-Response/*.t t/Plack-Runner/*.t t/Plack-TempBuffer/*.t t/Plack-Test/*.t t/Plack-Util/*.t" } diff --git a/lib/Plack.pm b/lib/Plack.pm index ecbcddcf2..9bb49ba54 100644 --- a/lib/Plack.pm +++ b/lib/Plack.pm @@ -3,7 +3,7 @@ package Plack; use strict; use warnings; use 5.008_001; -our $VERSION = '1.0024'; +our $VERSION = '1.0025'; $VERSION = eval $VERSION; 1; diff --git a/lib/Plack/Request.pm b/lib/Plack/Request.pm index 1afb2b9ee..aa1057809 100644 --- a/lib/Plack/Request.pm +++ b/lib/Plack/Request.pm @@ -2,7 +2,7 @@ package Plack::Request; use strict; use warnings; use 5.008_001; -our $VERSION = '1.0024'; +our $VERSION = '1.0025'; $VERSION = eval $VERSION; use HTTP::Headers; diff --git a/lib/Plack/Response.pm b/lib/Plack/Response.pm index 7d2b2b159..33d17cc82 100644 --- a/lib/Plack/Response.pm +++ b/lib/Plack/Response.pm @@ -1,7 +1,7 @@ package Plack::Response; use strict; use warnings; -our $VERSION = '1.0024'; +our $VERSION = '1.0025'; $VERSION = eval $VERSION; use Plack::Util::Accessor qw(body status);