Skip to content

Commit

Permalink
Checking in changes prior to tagging of version 0.13.
Browse files Browse the repository at this point in the history
Changelog diff is:

diff --git a/Changes b/Changes
index 1e7d8da..a7f2a39 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,7 @@
 Revision history for Perl extension CGI::Header.

+0.13  Jan 8th, 2012
+
   - clear() and each() return the current object itself
   - set() returns the given value:
       $header->set( 'Foo' => 'bar' ); # => "bar"
  • Loading branch information
Ryo Anazawa committed Jan 8, 2013
1 parent d99e710 commit fa61714
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 2 additions & 0 deletions Changes
@@ -1,5 +1,7 @@
Revision history for Perl extension CGI::Header.

0.13 Jan 8th, 2012

- clear() and each() return the current object itself
- set() returns the given value:
$header->set( 'Foo' => 'bar' ); # => "bar"
Expand Down
5 changes: 2 additions & 3 deletions MANIFEST
Expand Up @@ -14,9 +14,8 @@ MANIFEST This list of files
META.yml
README
t/00_compile.t
t/10_normalization.t
t/11_basic.t
t/12_tie.t
t/10_basic.t
t/11_tie.t
t/20_content_disposition.t
t/21_content_type.t
t/22_date.t
Expand Down
1 change: 0 additions & 1 deletion Makefile.PL
Expand Up @@ -9,7 +9,6 @@ requires 'CGI::Util' => '1.5';
requires 'List::Util' => '1.19';
requires 'Scalar::Util' => '1.19';

test_requires 'Test::Base' => '0.60';
test_requires 'Test::Exception' => '0.31';
test_requires 'Test::More' => '0.98';
test_requires 'Test::Pod' => '1.45';
Expand Down
2 changes: 1 addition & 1 deletion lib/CGI/Header.pm
Expand Up @@ -7,7 +7,7 @@ use Carp qw/carp croak/;
use Scalar::Util qw/refaddr/;
use List::Util qw/first/;

our $VERSION = '0.12';
our $VERSION = '0.13';

# Why Inside-out?
# To avoid blessing a hash. This class behaves like a hash,
Expand Down

0 comments on commit fa61714

Please sign in to comment.