Skip to content

Commit a625d48

Browse files
committed
Update Changes and Increment version
1 parent a57965c commit a625d48

File tree

4 files changed

+22
-4
lines changed

4 files changed

+22
-4
lines changed

Changes

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,30 @@
11
Revision history for XML-Sig
22

3+
0.50 - 2021-04-18
4+
5+
[Significant features implemented since 0.47]
6+
7+
- Add ripemd160 support for signature and digests
8+
- Improved tests
9+
10+
[Change Log]
11+
12+
- TBD Update Changes and Increment version
13+
- c1d7ecb Add generated README to repo
14+
- 73cc529 Add HMAC and RIPEMD160 dependencies
15+
- 92fa091 Test dsa with nox509
16+
- eb3f912 Move signature calculation to subroutines
17+
- 04c8def hmac-ripemd160 support
18+
- 8b6053a ripemd160 signature support
19+
- 7fdd133 ripemd160 digest support
20+
321
0.49 - 2021-04-10
422

523
[Significant features implemented since 0.47]
624
- HMAC support for signatures
725

826
[Change Log]
9-
- TBD Update Changes and Increment version
27+
- bd19f48 Update Changes and Increment version
1028

1129
0.48-TRIAL - 2021-04-09
1230

Makefile.PL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ my %WriteMakefileArgs = (
4141
"Test::Exception" => 0,
4242
"Test::More" => 0
4343
},
44-
"VERSION" => "0.49",
44+
"VERSION" => "0.50",
4545
"test" => {
4646
"TESTS" => "t/*.t"
4747
}

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ NAME
22
XML::Sig
33

44
VERSION
5-
version 0.49
5+
version 0.50
66

77
SYNOPSIS
88
my $xml = '<foo ID="abc">123</foo>';

lib/XML/Sig.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ it -- all in accordance with the W3C standard governing XML signatures.
3535
use vars qw($VERSION @EXPORT_OK %EXPORT_TAGS $DEBUG);
3636

3737
$DEBUG = 0;
38-
$VERSION = '0.49';
38+
$VERSION = '0.50';
3939

4040
use base qw(Class::Accessor);
4141
XML::Sig->mk_accessors(qw(key));

0 commit comments

Comments
 (0)