From: Yuval Kogman Date: Wed, 20 Sep 2006 16:55:33 +0000 (+0000) Subject: releng for Cookie X-Git-Tag: v0.06^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Plugin-Session-State-Cookie.git;a=commitdiff_plain;h=519fe077777d954a0d2d8885f594fc5b04b4ff0f releng for Cookie --- diff --git a/Build.PL b/Build.PL deleted file mode 100644 index 9644e8d..0000000 --- a/Build.PL +++ /dev/null @@ -1,16 +0,0 @@ -use strict; -use Module::Build; - -my $build = Module::Build->new( - create_makefile_pl => 'traditional', - license => 'perl', - module_name => 'Catalyst::Plugin::Session::State::Cookie', - requires => { - 'Catalyst::Plugin::Session' => '0.06', - 'Test::MockObject' => '1.01', - }, - create_readme => 1, - sign => 1, -); -$build->create_build_script; - diff --git a/Changes b/Changes index 75df1c6..2ee48c5 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for Perl extension Catalyst::Plugin::Session::State::Cookie +0.06 2006-09-20 19:53:00 + - Fix args in calls to NEXT::set_session_id and NEXT::extend_session_id + 0.05 2006-08-06 20:50:00 - Add configuration of 'cookie_path' (Michael W Peterson) diff --git a/lib/Catalyst/Plugin/Session/State/Cookie.pm b/lib/Catalyst/Plugin/Session/State/Cookie.pm index d1ed4a4..aa0e61a 100644 --- a/lib/Catalyst/Plugin/Session/State/Cookie.pm +++ b/lib/Catalyst/Plugin/Session/State/Cookie.pm @@ -7,7 +7,7 @@ use warnings; use NEXT; use Catalyst::Utils (); -our $VERSION = "0.05"; +our $VERSION = "0.06"; sub setup_session { my $c = shift; diff --git a/t/99_prereq.t b/t/99_prereq.t deleted file mode 100644 index bcfb392..0000000 --- a/t/99_prereq.t +++ /dev/null @@ -1,8 +0,0 @@ -#!/usr/bin/perl - -use strict; -use warnings; - -use Test::Prereq::Build; -prereq_ok(); -