diff --git a/Changes b/Changes index 7d8b7f6b..dc7d5890 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,6 @@ Revision history for Perl extension Net::SSLeay. -???? +1.94_04 2024-01-05 - Use -DOPENSSL_API_COMPAT=908 when compiling SSLeay.xs to suppress OpenSSL deprecation warnings. - Expose a number of functions that were added in recent @@ -11,6 +11,10 @@ Revision history for Perl extension Net::SSLeay. - EVP_PKEY_security_bits in LibreSSL 3.6.0 - SSL_CTX_set_keylog_callback in LibreSSL 3.5.0 - SSL_is_dtls in LibreSSL 3.3.2 + - Remove Tuure Vartiainen as an active contributor. Tuure's contributions were + instrumental in the transition from ad hoc testing to CI-based testing, which + has greatly improved Net-SSLeay's stability, reliability and compatibility. + Thanks for your contributions, Tuure! 1.93_03 2024-01-02 - Pass RAND_seed()'s sole argument to the underlying RAND_seed() function in diff --git a/helper_script/generate-test-pki b/helper_script/generate-test-pki index f2d7acbd..3ca9413b 100755 --- a/helper_script/generate-test-pki +++ b/helper_script/generate-test-pki @@ -14,7 +14,7 @@ use File::Temp; use Getopt::Long qw(GetOptionsFromArray); use IPC::Run qw( start finish timeout ); -our $VERSION = '1.93_03'; +our $VERSION = '1.93_04'; local $SIG{__DIE__} = sub { my ($cause) = @_; @@ -1254,7 +1254,7 @@ C - Generate a PKI for the Net-SSLeay test suite =head1 VERSION -This document describes version 1.93_03 of C. +This document describes version 1.93_04 of C. =head1 USAGE diff --git a/helper_script/update-exported-constants b/helper_script/update-exported-constants index ea9f347f..d879347c 100755 --- a/helper_script/update-exported-constants +++ b/helper_script/update-exported-constants @@ -14,7 +14,7 @@ use File::Spec::Functions qw(catfile); use Getopt::Long qw(GetOptionsFromArray); use POSIX qw(ceil); -our $VERSION = '1.93_03'; +our $VERSION = '1.93_04'; local $SIG{__DIE__} = sub { my ($cause) = @_; @@ -427,7 +427,7 @@ C - Manage constants exported by Net::SSLeay =head1 VERSION -This document describes version 1.93_03 of C. +This document describes version 1.93_04 of C. =head1 USAGE diff --git a/inc/Test/Net/SSLeay.pm b/inc/Test/Net/SSLeay.pm index ada6a47e..05191a17 100644 --- a/inc/Test/Net/SSLeay.pm +++ b/inc/Test/Net/SSLeay.pm @@ -14,7 +14,7 @@ use File::Spec::Functions qw( abs2rel catfile ); use Test::Builder; use Test::Net::SSLeay::Socket; -our $VERSION = '1.93_03'; +our $VERSION = '1.93_04'; our @EXPORT_OK = qw( can_fork can_really_fork can_thread @@ -542,7 +542,7 @@ Test::Net::SSLeay - Helper module for the Net-SSLeay test suite =head1 VERSION -This document describes version 1.93_03 of Test::Net::SSLeay. +This document describes version 1.93_04 of Test::Net::SSLeay. =head1 SYNOPSIS diff --git a/inc/Test/Net/SSLeay/Socket.pm b/inc/Test/Net/SSLeay/Socket.pm index 850274d8..b8dc42b2 100644 --- a/inc/Test/Net/SSLeay/Socket.pm +++ b/inc/Test/Net/SSLeay/Socket.pm @@ -13,7 +13,7 @@ use Socket qw( inet_aton inet_ntoa pack_sockaddr_in unpack_sockaddr_in ); -our $VERSION = '1.93_03'; +our $VERSION = '1.93_04'; my %PROTOS = ( tcp => SOCK_STREAM, @@ -134,7 +134,7 @@ Test::Net::SSLeay::Socket - Socket class for the Net-SSLeay test suite =head1 VERSION -This document describes version 1.93_03 of Test::Net::SSLeay::Socket. +This document describes version 1.93_04 of Test::Net::SSLeay::Socket. =head1 SYNOPSIS diff --git a/lib/Net/SSLeay.pm b/lib/Net/SSLeay.pm index c8031b4a..892e63b9 100644 --- a/lib/Net/SSLeay.pm +++ b/lib/Net/SSLeay.pm @@ -70,7 +70,7 @@ $Net::SSLeay::how_random = 512; # inc/Test/Net/SSLeay.pm # inc/Test/Net/SSLeay/Socket.pm # lib/Net/SSLeay/Handle.pm -$VERSION = '1.93_03'; +$VERSION = '1.93_04'; @ISA = qw(Exporter); diff --git a/lib/Net/SSLeay/Handle.pm b/lib/Net/SSLeay/Handle.pm index faa5c00f..59a4206b 100644 --- a/lib/Net/SSLeay/Handle.pm +++ b/lib/Net/SSLeay/Handle.pm @@ -57,7 +57,7 @@ you need to add to your program is the tie function as in: use vars qw(@ISA @EXPORT_OK $VERSION); @ISA = qw(Exporter); @EXPORT_OK = qw(shutdown); -$VERSION = '1.93_03'; +$VERSION = '1.93_04'; my $Initialized; #-- only _initialize() once my $Debug = 0; #-- pretty hokey