File tree Expand file tree Collapse file tree 5 files changed +9
-10
lines changed Expand file tree Collapse file tree 5 files changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ my %WriteMakefileArgs = (
1717 " NAME" => " XML::Enc" ,
1818 " PREREQ_PM" => {
1919 " Carp" => 0,
20- " Crypt::AuthEnc::GCM" => 0 ,
20+ " Crypt::AuthEnc::GCM" => " 0.062 " ,
2121 " Crypt::Mode::CBC" => 0,
2222 " Crypt::OpenSSL::Bignum" => 0,
2323 " Crypt::OpenSSL::RSA" => 0,
@@ -34,7 +34,7 @@ my %WriteMakefileArgs = (
3434 " File::Which" => 0,
3535 " Test::More" => 0
3636 },
37- " VERSION" => " 0.05 " ,
37+ " VERSION" => " 0.06 " ,
3838 " test" => {
3939 " TESTS" => " t/*.t"
4040 }
@@ -43,7 +43,7 @@ my %WriteMakefileArgs = (
4343
4444my %FallbackPrereqs = (
4545 " Carp" => 0,
46- " Crypt::AuthEnc::GCM" => 0 ,
46+ " Crypt::AuthEnc::GCM" => " 0.062 " ,
4747 " Crypt::Mode::CBC" => 0,
4848 " Crypt::OpenSSL::Bignum" => 0,
4949 " Crypt::OpenSSL::RSA" => 0,
Original file line number Diff line number Diff line change 22 XML::Enc - XML::Enc Encryption Support
33
44VERSION
5- version 0.05
5+ version 0.06
66
77SYNOPSIS
88 my $decrypter = XML::Enc->new(
Original file line number Diff line number Diff line change 11# Do not edit this file directly. To change prereqs, edit the `dist.ini` file.
22
33requires " Carp" => " 0" ;
4- requires " Crypt::AuthEnc::GCM" => " 0" ;
4+ requires " Crypt::AuthEnc::GCM" => " 0.062 " ;
55requires " Crypt::Mode::CBC" => " 0" ;
66requires " Crypt::OpenSSL::Bignum" => " 0" ;
77requires " Crypt::OpenSSL::RSA" => " 0" ;
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ MIME::Base64 = 0
2020XML::LibXML = 0
2121Crypt::Mode::CBC = 0
2222Crypt::Random = 0
23- Crypt::AuthEnc::GCM = 0
23+ Crypt::AuthEnc::GCM = 0.062
2424
2525[Prereqs / TestRequires]
2626Test::More = 0
@@ -83,7 +83,7 @@ filename = Changes
8383first_version = 0.01 ; this is the default
8484version_by_branch = 0 ; this is the default
8585version_regexp = ^(0.\d+)$ ; this is the default
86- [WriteVersion ]
86+ [OurPkgVersion ]
8787
8888[Git::Tag]
8989tag_format = %V ; this is the default
Original file line number Diff line number Diff line change @@ -2,21 +2,20 @@ use strict;
22use warnings;
33
44package XML::Enc ;
5+ # VERSION
56
67# ABSTRACT: XML::Enc Encryption Support
78
89use Carp;
910use XML::LibXML;
1011use Crypt::OpenSSL::RSA;
1112use Crypt::Mode::CBC;
12- use Crypt::AuthEnc::GCM;
13+ use Crypt::AuthEnc::GCM 0.062 ;
1314use MIME::Base64 qw/ decode_base64 encode_base64/ ;
1415use Crypt::Random qw( makerandom_octet ) ;
1516
1617use vars qw( $VERSION @EXPORT_OK %EXPORT_TAGS $DEBUG) ;
1718
18- our $VERSION = ' 0.05' ;
19-
2019our $DEBUG = 0;
2120
2221=head1 NAME
You can’t perform that action at this time.
0 commit comments