diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2021-02-02 09:21:59 +1300 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2021-02-02 09:21:59 +1300 |
commit | 05c823c223b70f3e1d2ca5f9c71ed514b71e0d5f (patch) | |
tree | 76ab10a81bc52a20924a500e32edcc233f236380 | |
parent | Merge branch 'release/v0.08' (diff) | |
parent | Correct format of minimum Perl version (diff) | |
download | inotifymask-master.tar.gz inotifymask-master.zip |
* hotfix/v0.09:
Correct format of minimum Perl version
-rw-r--r-- | Makefile.PL | 2 | ||||
-rw-r--r-- | bin/inotifymask | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.PL b/Makefile.PL index bfa5d9b..5dfe7bb 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -9,7 +9,7 @@ WriteMakefile( VERSION_FROM => 'bin/inotifymask', LICENSE => 'MIT', EXE_FILES => ['bin/inotifymask'], - MIN_PERL_VERSION => '5.010_001', + MIN_PERL_VERSION => '5.010001', CONFIGURE_REQUIRES => { 'ExtUtils::MakeMaker' => '0', }, diff --git a/bin/inotifymask b/bin/inotifymask index 1822585..29fa3b6 100644 --- a/bin/inotifymask +++ b/bin/inotifymask @@ -10,7 +10,7 @@ use File::Find; use File::stat; use Linux::Inotify2; -our $VERSION = '0.08'; +our $VERSION = '0.09'; const our $SELF => 'inotifymask'; |