From: Charles McGarvey Date: Wed, 20 Apr 2022 01:37:17 +0000 (-0600) Subject: set a version in repo Makefile.PL X-Git-Tag: v0.900~1 X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fp5-File-KDBX-XS;a=commitdiff_plain;h=d05b8934af6622a54a4dd62c0b4437b4b1f778a7 set a version in repo Makefile.PL --- diff --git a/Makefile.PL b/Makefile.PL index 21d5d60..406476e 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -69,6 +69,7 @@ if ($^O !~ /^(MSWin32|darwin|solaris)$/ && ($Config{ld} =~ /gcc|g\+\+/ || $Confi my %eumm_args = ( 'NAME' => 'File::KDBX::XS',##{ # List NAME explicitly here so it works even without dzil. ##} + 'VERSION' => '999.999', ##{ $plugin->get_default(qw{ABSTRACT AUTHOR DISTNAME LICENSE MIN_PERL_VERSION VERSION test}) ##} ##{ $plugin->get_prereqs(1) ##} @EUMM_INC_LIB, diff --git a/lib/File/KDBX/XS.pm b/lib/File/KDBX/XS.pm index 6c8d4bd..497732e 100644 --- a/lib/File/KDBX/XS.pm +++ b/lib/File/KDBX/XS.pm @@ -4,16 +4,10 @@ package File::KDBX::XS; use warnings; use strict; -use Exporter qw(import); use XSLoader; our $VERSION = '999.999'; # VERSION -our @EXPORT_OK = qw( - CowREFCNT - kdf_aes_transform_half -); - XSLoader::load(__PACKAGE__, $VERSION); 1; @@ -51,4 +45,6 @@ or if the scalar is not COW. See also L. +=for Pod::Coverage kdf_aes_transform_half + =cut