From 735fe91293721c60a08e74a49e566e698a30a022 Mon Sep 17 00:00:00 2001 From: Ryo Anazawa Date: Mon, 25 Feb 2013 14:05:19 +0900 Subject: [PATCH] Checking in changes prior to tagging of version 0.21. Changelog diff is: diff --git a/Changes b/Changes index 8e39c40..16073a5 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,7 @@ Revision history for Perl extension CGI::Header. +0.21 Feb 25th, 2013 + [CGI::Header::PSGI] - psgi_header() is compatible with CGI::Simple's header() method. --- Changes | 2 ++ MANIFEST | 2 ++ lib/CGI/Header.pm | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Changes b/Changes index 8e39c40..16073a5 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,7 @@ Revision history for Perl extension CGI::Header. +0.21 Feb 25th, 2013 + [CGI::Header::PSGI] - psgi_header() is compatible with CGI::Simple's header() method. diff --git a/MANIFEST b/MANIFEST index 8da197a..ad69a3b 100644 --- a/MANIFEST +++ b/MANIFEST @@ -27,6 +27,8 @@ t/26_set_cookie.t t/27_window_target.t t/30_cgi_header.t t/31_psgi_header.t +t/40_psgi_header.t +t/41_psgi_redirect.t tools/benchmark.pl tools/profile.pl xt/pod.t diff --git a/lib/CGI/Header.pm b/lib/CGI/Header.pm index 2b23991..4403172 100644 --- a/lib/CGI/Header.pm +++ b/lib/CGI/Header.pm @@ -6,7 +6,7 @@ use CGI::Util qw//; use Carp qw/carp croak/; use List::Util qw/first/; -our $VERSION = '0.20'; +our $VERSION = '0.21'; my $MODIFY = 'Modification of a read-only value attempted';