aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-04-29 23:25:47 +1200
committerTom Ryder <tom@sanctum.geek.nz>2020-04-29 23:25:47 +1200
commitea3587855b72af04ed862d4c78081ab5105160da (patch)
treef79f08c676f13fa61a33d387384c7e03e52328b0
parentMerge branch 'hotfix/v0.02' (diff)
parentBump VERSION (diff)
downloadinotifymask-ea3587855b72af04ed862d4c78081ab5105160da.tar.gz
inotifymask-ea3587855b72af04ed862d4c78081ab5105160da.zip
Merge branch 'hotfix/v0.03'v0.03
* 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';