summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Novakovic <chris@chrisn.me.uk>2024-01-05 00:14:22 +0000
committerChris Novakovic <chris@chrisn.me.uk>2024-01-05 00:14:22 +0000
commit9a983ab383e458718e9a8ef3d75a055dc3f14a06 (patch)
tree1619458248409f44dab9208eac19dd60173f9bbc
parent87d4f7a6ce3a8436957d0c89dc7da31c8ed42c1e (diff)
Developer release 1.93_04
Bump all version numbers from 1.93_03 to 1.93_04, and associate all reported changes since 1.93_03 with version 1.93_04. Closes #462.
-rw-r--r--Changes6
-rwxr-xr-xhelper_script/generate-test-pki4
-rwxr-xr-xhelper_script/update-exported-constants4
-rw-r--r--inc/Test/Net/SSLeay.pm4
-rw-r--r--inc/Test/Net/SSLeay/Socket.pm4
-rw-r--r--lib/Net/SSLeay.pm2
-rw-r--r--lib/Net/SSLeay/Handle.pm2
7 files changed, 15 insertions, 11 deletions
diff --git a/Changes b/Changes
index 7d8b7f6..dc7d589 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 f2d7acb..3ca9413 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-test-pki> - Generate a PKI for the Net-SSLeay test suite
=head1 VERSION
-This document describes version 1.93_03 of C<generate-test-pki>.
+This document describes version 1.93_04 of C<generate-test-pki>.
=head1 USAGE
diff --git a/helper_script/update-exported-constants b/helper_script/update-exported-constants
index ea9f347..d879347 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<update-exported-constants> - Manage constants exported by Net::SSLeay
=head1 VERSION
-This document describes version 1.93_03 of C<update-exported-constants>.
+This document describes version 1.93_04 of C<update-exported-constants>.
=head1 USAGE
diff --git a/inc/Test/Net/SSLeay.pm b/inc/Test/Net/SSLeay.pm
index ada6a47..05191a1 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 850274d..b8dc42b 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 c8031b4..892e63b 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 faa5c00..59a4206 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