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

Commit 66c8eed

Browse files
committed
minor: Bump BSON and BSON::XS prereqs
1 parent 2afefa1 commit 66c8eed

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Makefile.PL

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ my %WriteMakefileArgs = (
2121
"PREREQ_PM" => {
2222
"Authen::SASL::SASLprep" => 0,
2323
"Authen::SCRAM::Client" => "0.011",
24-
"BSON" => "1.006006",
24+
"BSON" => "1.010001",
2525
"BSON::Bytes" => 0,
2626
"BSON::Code" => 0,
2727
"BSON::DBRef" => 0,
@@ -92,7 +92,7 @@ my %WriteMakefileArgs = (
9292
my %FallbackPrereqs = (
9393
"Authen::SASL::SASLprep" => 0,
9494
"Authen::SCRAM::Client" => "0.011",
95-
"BSON" => "1.006006",
95+
"BSON" => "1.010001",
9696
"BSON::Bytes" => 0,
9797
"BSON::Code" => 0,
9898
"BSON::DBRef" => 0,
@@ -161,7 +161,7 @@ runtime_requires('Type::Tiny::XS');
161161

162162
# inserted by Dist::Zilla::Plugin::DynamicPrereqs 0.034
163163
if (!want_pp() && can_xs() && ($^O ne "MSWin32" || do {my (undef,$major,undef,undef,$id)=Win32::GetOSVersion(); $id>2 || ($id==2 && $major>=6)})) {
164-
runtime_requires('BSON::XS', '0.004002');
164+
runtime_requires('BSON::XS', '0.006000');
165165
}
166166

167167
unless ( eval { ExtUtils::MakeMaker->VERSION('6.63_03') } ) {

dist.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ footer_file = inc/Makefile.footer
293293
-condition = !want_pp()
294294
-condition = can_xs()
295295
-condition = ($^O ne "MSWin32" || do {my (undef,$major,undef,undef,$id)=Win32::GetOSVersion(); $id>2 || ($id==2 && $major>=6)})
296-
-body = runtime_requires('BSON::XS', '0.004002');
296+
-body = runtime_requires('BSON::XS', '0.006000');
297297

298298
; Actually a TestRunner helper plugin, but needs to come after
299299
; MakeMaker; conditionally run xt/ tests during dzil test or dzil

lib/MongoDB/MongoClient.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ use MongoDB::_Dispatcher;
3636
use MongoDB::_SessionPool;
3737
use MongoDB::_Topology;
3838
use MongoDB::_URI;
39-
use BSON 1.006006;
39+
use BSON 1.010001;
4040
use Digest::MD5;
4141
use UUID::URandom;
4242
use Tie::IxHash;

0 commit comments

Comments
 (0)