From 1b356fa38d6229da59f95cf5e9f8d4a521f606d8 Mon Sep 17 00:00:00 2001 From: Tatsuhiko Miyagawa Date: Fri, 23 Oct 2009 01:22:19 -0700 Subject: [PATCH] Checking in changes prior to tagging of version 0.9006. Changelog diff is: diff --git a/Changes b/Changes index fee078a..5272629 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,11 @@ Revision history for Perl extension Plack +0.9006: Fri Oct 23 01:21:13 PDT 2009 + - Support streaming interface in most middlewares + - Added Middleware::Deflater (not recommended to use: see POD) + - Document FCGI configuration in Server::FCGI pod (dhoss) + - Inline Plack::Util functions in Server::CGI to speed up (mst) + 0.9005 Wed Oct 21 20:53:19 PDT 2009 - Switch to Filesys::Notify::Simple to watch directory to trim down deps - Made some dependencies optional since they're actually optional --- Changes | 6 ++++++ MANIFEST | 1 + lib/Plack.pm | 2 +- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Changes b/Changes index fee078ad4..52726293d 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,11 @@ Revision history for Perl extension Plack +0.9006: Fri Oct 23 01:21:13 PDT 2009 + - Support streaming interface in most middlewares + - Added Middleware::Deflater (not recommended to use: see POD) + - Document FCGI configuration in Server::FCGI pod (dhoss) + - Inline Plack::Util functions in Server::CGI to speed up (mst) + 0.9005 Wed Oct 21 20:53:19 PDT 2009 - Switch to Filesys::Notify::Simple to watch directory to trim down deps - Made some dependencies optional since they're actually optional diff --git a/MANIFEST b/MANIFEST index 02fe9abeb..eedd91c0d 100644 --- a/MANIFEST +++ b/MANIFEST @@ -70,6 +70,7 @@ lib/Plack/Middleware/AccessLog/Timed.pm lib/Plack/Middleware/Chunked.pm lib/Plack/Middleware/ConditionalGET.pm lib/Plack/Middleware/ContentLength.pm +lib/Plack/Middleware/Deflater.pm lib/Plack/Middleware/ErrorDocument.pm lib/Plack/Middleware/JSONP.pm lib/Plack/Middleware/Lint.pm diff --git a/lib/Plack.pm b/lib/Plack.pm index d9d96d51e..5974ae73d 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 = '0.9005'; +our $VERSION = '0.9006'; 1; __END__