Skip to content

Commit

Permalink
1.0029
Browse files Browse the repository at this point in the history
  • Loading branch information
miyagawa committed Aug 22, 2013
1 parent 1c6fbcd commit d41582a
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 11 deletions.
13 changes: 13 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@ Go to http://github.com/plack/Plack/issues for the roadmap and known issues.

{{$NEXT}}

1.0029 2013-08-22 14:05:44 PDT
[NEW FEATURES]
- Plack::Test now has a simpler object-oriented interface that doesn't
take multiple callbacks. #420

[IMPROVEMENTS]
- bump dependencies for Test::TCP and HTTP::Tiny
- Set no_proxy for HTTP::Tiny in tests (kazeburo)

[INCOMPATIBLE CHANGES]
- Split HTTP::Server::Simple handler from Plack distribution and merge to
HTTP-Server-Simple-PSGI distribution

1.0028 2013-06-15 01:42:52 PDT
[IMPROVEMENTS]
- Skip cgi related tests for Win32 (chorny) #413
Expand Down
12 changes: 7 additions & 5 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"Tatsuhiko Miyagawa"
],
"dynamic_config" : 0,
"generated_by" : "Dist::Milla version v1.0.2, Dist::Zilla version 4.300034, CPAN::Meta::Converter version 2.131560",
"generated_by" : "Dist::Milla version v1.0.3, Dist::Zilla version 4.300035, CPAN::Meta::Converter version 2.132140",
"license" : [
"perl_5"
],
Expand Down Expand Up @@ -44,11 +44,11 @@
"Filesys::Notify::Simple" : "0",
"HTTP::Body" : "1.06",
"HTTP::Message" : "5.814",
"HTTP::Tiny" : "0.024",
"HTTP::Tiny" : "0.034",
"Hash::MultiValue" : "0.05",
"Pod::Usage" : "1.36",
"Stream::Buffered" : "0.02",
"Test::TCP" : "1.02",
"Test::TCP" : "2.00",
"Try::Tiny" : "0",
"URI" : "1.59",
"parent" : "0",
Expand Down Expand Up @@ -78,7 +78,8 @@
"LWP::Protocol::http10" : "0",
"LWP::UserAgent" : "5.814",
"Log::Log4perl" : "0",
"MIME::Types" : "0"
"MIME::Types" : "0",
"Module::Refresh" : "0"
}
}
},
Expand All @@ -94,7 +95,7 @@
"web" : "https://github.com/plack/Plack"
}
},
"version" : "1.0028",
"version" : "1.0029",
"x_authority" : "cpan:MIYAGAWA",
"x_contributors" : [
"Aaron Trevena <aaron.trevena@gmail.com>",
Expand All @@ -121,6 +122,7 @@
"Hans Dieter Pearcey <hdp@weftsoar.net>",
"Henry Baragar <Henry.Baragar@Instantiated.Ca>",
"Hiroshi Sakai <ziguzagu@gmail.com>",
"Jakob Voss <jakob@nichtich.de>",
"Jay Hannah <jay.hannah@iinteractive.com>",
"Jesse Luehrs <doy@cpan.org>",
"Jiro Nishiguchi <jiro@cpan.org>",
Expand Down
6 changes: 3 additions & 3 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ my %WriteMakefileArgs = (
"Filesys::Notify::Simple" => 0,
"HTTP::Body" => "1.06",
"HTTP::Message" => "5.814",
"HTTP::Tiny" => "0.024",
"HTTP::Tiny" => "0.034",
"Hash::MultiValue" => "0.05",
"Pod::Usage" => "1.36",
"Stream::Buffered" => "0.02",
"Test::TCP" => "1.02",
"Test::TCP" => "2.00",
"Try::Tiny" => 0,
"URI" => "1.59",
"parent" => 0
Expand All @@ -45,7 +45,7 @@ my %WriteMakefileArgs = (
"Test::More" => "0.88",
"Test::Requires" => 0
},
"VERSION" => "1.0028",
"VERSION" => "1.0029",
"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"
}
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Plack;
use strict;
use warnings;
use 5.008_001;
our $VERSION = '1.0028';
our $VERSION = '1.0029';
$VERSION = eval $VERSION;

1;
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Request.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Plack::Request;
use strict;
use warnings;
use 5.008_001;
our $VERSION = '1.0028';
our $VERSION = '1.0029';
$VERSION = eval $VERSION;

use HTTP::Headers;
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Response.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package Plack::Response;
use strict;
use warnings;
our $VERSION = '1.0028';
our $VERSION = '1.0029';
$VERSION = eval $VERSION;

use Plack::Util::Accessor qw(body status);
Expand Down

0 comments on commit d41582a

Please sign in to comment.