aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-04-29 23:25:54 +1200
committerTom Ryder <tom@sanctum.geek.nz>2020-04-29 23:25:54 +1200
commitc2160be8b273314ed9226ce0f1aaffe32ae546f7 (patch)
treef79f08c676f13fa61a33d387384c7e03e52328b0
parentMerge branch 'hotfix/v0.02' into develop (diff)
parentBump VERSION (diff)
downloadinotifymask-c2160be8b273314ed9226ce0f1aaffe32ae546f7.tar.gz
inotifymask-c2160be8b273314ed9226ce0f1aaffe32ae546f7.zip
Merge branch 'hotfix/v0.03' into develop
* hotfix/v0.03: Correct required Perl version
-rw-r--r--bin/inotifymask4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/inotifymask b/bin/inotifymask
index cf9e3d3..74e1a26 100644
--- a/bin/inotifymask
+++ b/bin/inotifymask
@@ -1,6 +1,6 @@
#!perl
-use 5.028_001;
+use 5.010_001;
use strict;
use warnings;
use utf8;
@@ -9,7 +9,7 @@ use Const::Fast;
use File::stat;
use Linux::Inotify2;
-our $VERSION = '0.02';
+our $VERSION = '0.03';
const our $SELF => 'inotifymask';