Skip to content

Commit

Permalink
v3.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
powerman committed Mar 19, 2020
1 parent 0b8d86d commit 34a5460
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 15 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ Revision history for Perl extension Crypt::MatrixSSL3.

{{$NEXT}}

v3.9.3 2020-03-19 09:46:50 EET
- Fixed PS_PUBKEY_OPTIMIZE_FOR_FASTER_SPEED / PS_PUBKEY_OPTIMIZE_FOR_SMALLER_RAM contention

v3.9.2 2018-12-03 23:06:57 EET
- Update bundled ca-certificates.

Expand Down
19 changes: 10 additions & 9 deletions META.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"abstract" : "Perl extension for SSL and TLS using MatrixSSL.org v3.7.2b",
"abstract" : "Perl extension for SSL and TLS using MatrixSSL.org v3.9.3",
"author" : [
"C. N. Drake <christopher@pobox.com>"
],
Expand Down Expand Up @@ -68,27 +68,27 @@
"provides" : {
"Crypt::MatrixSSL3" : {
"file" : "lib/Crypt/MatrixSSL3.pm",
"version" : "v3.9.2"
"version" : "v3.9.3"
},
"Crypt::MatrixSSL3::Client" : {
"file" : "lib/Crypt/MatrixSSL3.pm",
"version" : "v3.9.2"
"version" : "v3.9.3"
},
"Crypt::MatrixSSL3::HelloExt" : {
"file" : "lib/Crypt/MatrixSSL3.pm",
"version" : "v3.9.2"
"version" : "v3.9.3"
},
"Crypt::MatrixSSL3::Keys" : {
"file" : "lib/Crypt/MatrixSSL3.pm",
"version" : "v3.9.2"
"version" : "v3.9.3"
},
"Crypt::MatrixSSL3::Server" : {
"file" : "lib/Crypt/MatrixSSL3.pm",
"version" : "v3.9.2"
"version" : "v3.9.3"
},
"Crypt::MatrixSSL3::SessID" : {
"file" : "lib/Crypt/MatrixSSL3.pm",
"version" : "v3.9.2"
"version" : "v3.9.3"
}
},
"release_status" : "stable",
Expand All @@ -103,11 +103,12 @@
"web" : "https://github.com/powerman/perl-Crypt-MatrixSSL3"
}
},
"version" : "v3.9.2",
"version" : "v3.9.3",
"x_contributors" : [
"Alex Efros <powerman@cpan.org>",
"Chris Drake <cnd@geek.net.au>",
"vonydev <vony@teamevolve.ro>"
],
"x_serialization_backend" : "JSON::XS version 3.04"
"x_serialization_backend" : "JSON::XS version 4.02"
}

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@

# NAME

Crypt::MatrixSSL3 - Perl extension for SSL and TLS using MatrixSSL.org v3.7.2b
Crypt::MatrixSSL3 - Perl extension for SSL and TLS using MatrixSSL.org v3.9.3

# VERSION

This document describes Crypt::MatrixSSL3 version v3.9.2
This document describes Crypt::MatrixSSL3 version v3.9.3

# SYNOPSIS

Expand Down
4 changes: 2 additions & 2 deletions lib/Crypt/MatrixSSL3.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use Scalar::Util qw( dualvar );
use XSLoader;

BEGIN {
use version 0.77 (); our $VERSION = 'v3.9.2';
use version 0.77 (); our $VERSION = 'v3.9.3';
XSLoader::load(__PACKAGE__,$VERSION);
}

Expand Down Expand Up @@ -327,7 +327,7 @@ Crypt::MatrixSSL3 - Perl extension for SSL and TLS using MatrixSSL.org v3.9.3
=head1 VERSION
This document describes Crypt::MatrixSSL3 version v3.9.2
This document describes Crypt::MatrixSSL3 version v3.9.3
=head1 SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion script/ct-submit.pl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
use warnings;
use strict;

use version 0.77 (); our $VERSION = 'v3.9.2';
use version 0.77 (); our $VERSION = 'v3.9.3';

use Getopt::Long;
use Pod::Usage;
Expand Down
2 changes: 1 addition & 1 deletion script/mk-matrixssl-ca-certificates.pl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
use strict;
use Crypt::MatrixSSL3;

use version 0.77 (); our $VERSION = 'v3.9.2';
use version 0.77 (); our $VERSION = 'v3.9.3';

## no critic (Capitalization, RequireCarping)

Expand Down

0 comments on commit 34a5460

Please sign in to comment.