From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id C3ABD1FA12 for ; Wed, 26 Aug 2020 08:17:43 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 5/5] msgmap: use v5.10.1 Date: Wed, 26 Aug 2020 08:17:42 +0000 Message-Id: <20200826081742.16642-6-e@yhbt.net> In-Reply-To: <20200826081742.16642-1-e@yhbt.net> References: <20200826081742.16642-1-e@yhbt.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: We use the defined-or (`//', `//=') operators in 5.10, so require 5.10.1 like the rest of our codebase. Update an outdated comment while we're at it. --- lib/PublicInbox/Msgmap.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/PublicInbox/Msgmap.pm b/lib/PublicInbox/Msgmap.pm index d28e96c8..d696ce83 100644 --- a/lib/PublicInbox/Msgmap.pm +++ b/lib/PublicInbox/Msgmap.pm @@ -6,9 +6,10 @@ # numbers for NNTP and allows prefix lookups for partial Message-IDs # in case URLs get truncated from copy-n-paste errors by users. # -# This is maintained by ::SearchIdx +# This is maintained by ::SearchIdx (v1) and ::V2Writable (v2) package PublicInbox::Msgmap; use strict; +use v5.10.1; use DBI; use DBD::SQLite; use PublicInbox::Over;