Skip to content
This repository has been archived by the owner on Dec 22, 2021. It is now read-only.

Commit

Permalink
PERL-742 Require Perl 5.10.1 or later
Browse files Browse the repository at this point in the history
  • Loading branch information
xdg committed Apr 22, 2017
1 parent b55669f commit 93cef90
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ BEGIN {
use inc::Module::Install;

name 'MongoDB';
perl_version '5.8.4';
perl_version '5.10.1';
author 'Florian Ragwitz <rafl@debian.org>';
author 'Kristina Chodorow <kristina@mongodb.com>';
author 'Mike Friedman <mike.friedman@mongodb.com>';
Expand Down
4 changes: 2 additions & 2 deletions dist.ini
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ exclude_filename = weaver.ini
;fake_home = 1
;xt_mode = 1

; ensure we're backwards compatible to 5.008001
; ensure we're backwards compatible to 5.010001
[Test::MinimumVersion]
max_target_perl = 5.008001
max_target_perl = 5.010001

; ensure all .pm files have a $VERSION set
[Test::Version]
Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB.pm
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# limitations under the License.
#

use 5.008;
use 5.010001;
use strict;
use warnings;

Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/Error.pm
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
use 5.008;

use strict;
use warnings;

Expand Down
1 change: 0 additions & 1 deletion lib/MongoDB/_Constants.pm
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
# limitations under the License.
#

use 5.008;
use strict;
use warnings;

Expand Down
1 change: 0 additions & 1 deletion lib/MongoDB/_Platform.pm
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
# limitations under the License.
#

use 5.008;
use strict;
use warnings;

Expand Down
1 change: 0 additions & 1 deletion t/lib/TestBSON.pm
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
use 5.008001;
use strict;
use warnings;

Expand Down
1 change: 0 additions & 1 deletion t/lib/TestCodecWrapper.pm
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
use 5.008001;
use strict;
use warnings;

Expand Down

0 comments on commit 93cef90

Please sign in to comment.