Skip to content

Commit 40cc157

Browse files
authored
Bump the version of Future we're depending on (#978)
For the second time this week (#972 and #973), I've found myself wondering why a test was failing and discovered that it is due to it relying on new functionality in Future 0.45. I guess we may as well bump the dep as try to keep our tests backwards-compatible, particularly given the CI uses the latest version.
1 parent f5583d5 commit 40cc157

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

cpanfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ requires 'Email::MIME';
3232
requires 'File::Basename';
3333
requires 'File::Path';
3434
requires 'File::Slurper';
35-
requires 'Future', '>= 0.33';
35+
36+
# Future 0.45 allows you to return immediate values from sequence functions.
37+
requires 'Future', '>= 0.45';
3638
requires 'Getopt::Long';
3739
requires 'IO::Async', '>= 0.69';
3840
requires 'IO::Async::SSL';

0 commit comments

Comments
 (0)