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 = (
17
17
" NAME" => " XML::Enc" ,
18
18
" PREREQ_PM" => {
19
19
" Carp" => 0,
20
- " Crypt::AuthEnc::GCM" => 0 ,
20
+ " Crypt::AuthEnc::GCM" => " 0.062 " ,
21
21
" Crypt::Mode::CBC" => 0,
22
22
" Crypt::OpenSSL::Bignum" => 0,
23
23
" Crypt::OpenSSL::RSA" => 0,
@@ -34,7 +34,7 @@ my %WriteMakefileArgs = (
34
34
" File::Which" => 0,
35
35
" Test::More" => 0
36
36
},
37
- " VERSION" => " 0.05 " ,
37
+ " VERSION" => " 0.06 " ,
38
38
" test" => {
39
39
" TESTS" => " t/*.t"
40
40
}
@@ -43,7 +43,7 @@ my %WriteMakefileArgs = (
43
43
44
44
my %FallbackPrereqs = (
45
45
" Carp" => 0,
46
- " Crypt::AuthEnc::GCM" => 0 ,
46
+ " Crypt::AuthEnc::GCM" => " 0.062 " ,
47
47
" Crypt::Mode::CBC" => 0,
48
48
" Crypt::OpenSSL::Bignum" => 0,
49
49
" Crypt::OpenSSL::RSA" => 0,
Original file line number Diff line number Diff line change 2
2
XML::Enc - XML::Enc Encryption Support
3
3
4
4
VERSION
5
- version 0.05
5
+ version 0.06
6
6
7
7
SYNOPSIS
8
8
my $decrypter = XML::Enc->new(
Original file line number Diff line number Diff line change 1
1
# Do not edit this file directly. To change prereqs, edit the `dist.ini` file.
2
2
3
3
requires " Carp" => " 0" ;
4
- requires " Crypt::AuthEnc::GCM" => " 0" ;
4
+ requires " Crypt::AuthEnc::GCM" => " 0.062 " ;
5
5
requires " Crypt::Mode::CBC" => " 0" ;
6
6
requires " Crypt::OpenSSL::Bignum" => " 0" ;
7
7
requires " Crypt::OpenSSL::RSA" => " 0" ;
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ MIME::Base64 = 0
20
20
XML::LibXML = 0
21
21
Crypt::Mode::CBC = 0
22
22
Crypt::Random = 0
23
- Crypt::AuthEnc::GCM = 0
23
+ Crypt::AuthEnc::GCM = 0.062
24
24
25
25
[Prereqs / TestRequires]
26
26
Test::More = 0
@@ -83,7 +83,7 @@ filename = Changes
83
83
first_version = 0.01 ; this is the default
84
84
version_by_branch = 0 ; this is the default
85
85
version_regexp = ^(0.\d+)$ ; this is the default
86
- [WriteVersion ]
86
+ [OurPkgVersion ]
87
87
88
88
[Git::Tag]
89
89
tag_format = %V ; this is the default
Original file line number Diff line number Diff line change @@ -2,21 +2,20 @@ use strict;
2
2
use warnings;
3
3
4
4
package XML::Enc ;
5
+ # VERSION
5
6
6
7
# ABSTRACT: XML::Enc Encryption Support
7
8
8
9
use Carp;
9
10
use XML::LibXML;
10
11
use Crypt::OpenSSL::RSA;
11
12
use Crypt::Mode::CBC;
12
- use Crypt::AuthEnc::GCM;
13
+ use Crypt::AuthEnc::GCM 0.062 ;
13
14
use MIME::Base64 qw/ decode_base64 encode_base64/ ;
14
15
use Crypt::Random qw( makerandom_octet ) ;
15
16
16
17
use vars qw( $VERSION @EXPORT_OK %EXPORT_TAGS $DEBUG) ;
17
18
18
- our $VERSION = ' 0.05' ;
19
-
20
19
our $DEBUG = 0;
21
20
22
21
=head1 NAME
You can’t perform that action at this time.
0 commit comments