about summary refs log tree commit homepage
path: root/lib/PublicInbox/NetWriter.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2023-03-13 19:38:25 +0000
committerEric Wong <e@80x24.org>2023-03-14 20:51:00 +0000
commit3a2c46e6f7bf650e69cf7c7b9e3d62843e6deab9 (patch)
treeeb5235509b67472ec6c1520d9cd4967433684fc0 /lib/PublicInbox/NetWriter.pm
parentb192069672eb5e9de3fdd07064a9c9231390d584 (diff)
downloadpublic-inbox-3a2c46e6f7bf650e69cf7c7b9e3d62843e6deab9.tar.gz
None of these are affected by the Perl unicode_strings feature,
so they can `use v5.12' safely
Diffstat (limited to 'lib/PublicInbox/NetWriter.pm')
-rw-r--r--lib/PublicInbox/NetWriter.pm5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/PublicInbox/NetWriter.pm b/lib/PublicInbox/NetWriter.pm
index 4a1f34f6..7917ef89 100644
--- a/lib/PublicInbox/NetWriter.pm
+++ b/lib/PublicInbox/NetWriter.pm
@@ -1,10 +1,9 @@
-# Copyright (C) 2021 all contributors <meta@public-inbox.org>
+# Copyright (C) all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 
 # common writer code for IMAP (and later, JMAP)
 package PublicInbox::NetWriter;
-use strict;
-use v5.10.1;
+use v5.12;
 use parent qw(PublicInbox::NetReader);
 use PublicInbox::Smsg;
 use PublicInbox::MsgTime qw(msg_timestamp);