Skip to content
This repository has been archived by the owner on Jan 5, 2023. It is now read-only.

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
Minimum required Perl is now 5.8.1
  • Loading branch information
autarch committed Nov 8, 2008
1 parent f03adee commit 21c73e1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Build.PL
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use Module::Build;

use 5.006;
use 5.008001;

use strict;
use warnings;
Expand Down
1 change: 1 addition & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Revision history for Perl extension DBD::Mock.

1.38 November 8, 2008
- Bumped minimum Perl to 5.8.1, since that's what DBI requires.
- Fixed incorrect use of no_plan in t/025_mock_last_insert_id.t.
- The handling of attributes passed to the constructor was not
correct. The major symptom was that attributes (such as
Expand Down
4 changes: 2 additions & 2 deletions lib/DBD/Mock.pm
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ sub import {
# License or the Artistic License, as specified in the Perl README file.
# --------------------------------------------------------------------------- #

use 5.006;
use 5.008001;

use strict;
use warnings;

require DBI;

our $VERSION = '1.37';
our $VERSION = '1.38';

our $drh = undef; # will hold driver handle
our $err = 0; # will hold any error codes
Expand Down

0 comments on commit 21c73e1

Please sign in to comment.