Skip to content

Commit

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

diff --git a/Changes b/Changes
index a928084..4a9d924 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for Perl extension Data::TxnBuffer

+0.04  2011-01-26T20:29:10+09:00
+      - disabled XS backend at win32 because no one can maintain at this point
+
 0.03  2011-01-25T14:34:54+09:00
       - added missing dependency 'parent'
       - specify minimal perl version
  • Loading branch information
typester committed Jan 26, 2011
1 parent 300c5b0 commit 9b18443
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Revision history for Perl extension Data::TxnBuffer

0.04 2011-01-26T20:29:10+09:00
- disabled XS backend at win32 because no one can maintain at this point

0.03 2011-01-25T14:34:54+09:00
- added missing dependency 'parent'
- specify minimal perl version
Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ author_tests 'xt';

auto_set_repository;

if (want_xs()) {
if ($^O ne 'MSWin32' and want_xs()) {
use_ppport 3.19;
cc_src_paths 'src';

Expand Down
2 changes: 1 addition & 1 deletion lib/Data/TxnBuffer.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use strict;
use warnings;
use parent 'Data::TxnBuffer::Base';

our $VERSION = '0.03';
our $VERSION = '0.04';

our $BACKEND;
unless ($ENV{PERL_ONLY}) {
Expand Down

0 comments on commit 9b18443

Please sign in to comment.