From: Charles McGarvey Date: Sun, 17 Nov 2019 05:54:55 +0000 (-0700) Subject: require Path::Tiny 0.089 (for spewing arrayrefs) X-Git-Tag: v0.46~1 X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fgit-codeowners;a=commitdiff_plain;h=a27d001901b781e8a4355073b4b4ea1613ce084b require Path::Tiny 0.089 (for spewing arrayrefs) --- diff --git a/lib/File/Codeowners.pm b/lib/File/Codeowners.pm index 648390e..8ca8393 100644 --- a/lib/File/Codeowners.pm +++ b/lib/File/Codeowners.pm @@ -6,7 +6,7 @@ use warnings; use strict; use Encode qw(encode); -use Path::Tiny; +use Path::Tiny 0.089; use Scalar::Util qw(openhandle); use Text::Gitignore qw(build_gitignore_matcher); diff --git a/maint/fatpack.pl b/maint/fatpack.pl index 921380c..5486ae6 100755 --- a/maint/fatpack.pl +++ b/maint/fatpack.pl @@ -21,7 +21,7 @@ use File::pushd; use Getopt::Long; use MetaCPAN::API; use Module::CoreList; -use Path::Tiny; +use Path::Tiny 0.089; my $core_version = '5.010001'; my $plenv_version = '5.10.1'; diff --git a/t/app-codeowners.t b/t/app-codeowners.t index af426e6..b5e430e 100644 --- a/t/app-codeowners.t +++ b/t/app-codeowners.t @@ -9,7 +9,7 @@ use App::Codeowners::Util qw(run_git); use App::Codeowners; use Capture::Tiny qw(capture); use File::pushd; -use Path::Tiny qw(path tempdir); +use Path::Tiny 0.089 qw(path tempdir); use Test::More; my $can_git = _can_git();