[Catalyst-commits] r10000 - in
trunk/Catalyst-Plugin-Session-Store-FastMmap: .
lib/Catalyst/Plugin/Session/Store
karpet at dev.catalyst.perl.org
karpet at dev.catalyst.perl.org
Mon May 4 13:48:45 GMT 2009
Author: karpet
Date: 2009-05-04 13:48:45 +0000 (Mon, 04 May 2009)
New Revision: 10000
Modified:
trunk/Catalyst-Plugin-Session-Store-FastMmap/Changes
trunk/Catalyst-Plugin-Session-Store-FastMmap/lib/Catalyst/Plugin/Session/Store/FastMmap.pm
Log:
fix rt 45642 and remove Win32 hack
Modified: trunk/Catalyst-Plugin-Session-Store-FastMmap/Changes
===================================================================
--- trunk/Catalyst-Plugin-Session-Store-FastMmap/Changes 2009-05-04 13:13:56 UTC (rev 9999)
+++ trunk/Catalyst-Plugin-Session-Store-FastMmap/Changes 2009-05-04 13:48:45 UTC (rev 10000)
@@ -1,3 +1,8 @@
+0.09 unreleased
+ - remove Win32 hack since Cache::FastMmap 1.29 supports Win32.
+ see https://rt.cpan.org/Ticket/Display.html?id=45642
+
+
0.08 01 May 2009
- Bump Cache::FastMmap requirement to 1.29 to fix RT#45210
Modified: trunk/Catalyst-Plugin-Session-Store-FastMmap/lib/Catalyst/Plugin/Session/Store/FastMmap.pm
===================================================================
--- trunk/Catalyst-Plugin-Session-Store-FastMmap/lib/Catalyst/Plugin/Session/Store/FastMmap.pm 2009-05-04 13:13:56 UTC (rev 9999)
+++ trunk/Catalyst-Plugin-Session-Store-FastMmap/lib/Catalyst/Plugin/Session/Store/FastMmap.pm 2009-05-04 13:48:45 UTC (rev 10000)
@@ -7,16 +7,12 @@
Catalyst::Plugin::Session::Store/;
use MRO::Compat;
-
-BEGIN {
- require Cache::FastMmap if $^O ne 'MSWin32';
- require Cache::FastMmap::WithWin32 if $^O eq 'MSWin32';
-}
+use Cache::FastMmap;
use Path::Class ();
use File::Spec ();
use Catalyst::Utils ();
-our $VERSION = '0.08';
+our $VERSION = '0.09';
__PACKAGE__->mk_classdata(qw/_session_fastmmap_storage/);
More information about the Catalyst-commits
mailing list