releng for Cookie v0.06
Yuval Kogman [Wed, 20 Sep 2006 16:55:33 +0000 (16:55 +0000)]
Build.PL [deleted file]
Changes
lib/Catalyst/Plugin/Session/State/Cookie.pm
t/99_prereq.t [deleted file]

diff --git a/Build.PL b/Build.PL
deleted file mode 100644 (file)
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 (file)
--- 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)
 
index d1ed4a4..aa0e61a 100644 (file)
@@ -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 (file)
index bcfb392..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/usr/bin/perl
-
-use strict;
-use warnings;
-
-use Test::Prereq::Build;
-prereq_ok();
-