summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeikki Vatiainen <hvn@radiatorsoftware.com>2024-01-02 15:44:39 +0200
committerHeikki Vatiainen <hvn@radiatorsoftware.com>2024-01-02 16:12:36 +0200
commit3257da651d27f84cb08d8020f2577770807b81d5 (patch)
tree57e7d59ffad24f2353b966f7ebc1c4c60b7d9f6b
parent001de94d7d925bcb3bba6595fc06166b0faff236 (diff)
GH-456 Developer release 1.93_03
Bump all version numbers from 1.93_02 to 1.93_03, and associate all reported changes since 1.93_02 with version 1.93_03.
-rw-r--r--Changes2
-rw-r--r--README.Win321
-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
8 files changed, 12 insertions, 11 deletions
diff --git a/Changes b/Changes
index de30d8e..1a9b1f1 100644
--- a/Changes
+++ b/Changes
@@ -1,6 +1,6 @@
Revision history for Perl extension Net::SSLeay.
-????
+1.93_03 2024-01-02
- Pass RAND_seed()'s sole argument to the underlying RAND_seed() function in
libcrypto, rather than passing the value of a non-existent second argument.
Fixes GH-427. Thanks to cgf1 for the report.
diff --git a/README.Win32 b/README.Win32
index d44f72a..be87df8 100644
--- a/README.Win32
+++ b/README.Win32
@@ -7,6 +7,7 @@ Building on Win 32 platforms
ancient versions and untested procedures removed --mikem
22.4.2010 Updated info for 64 bit versions --mikem
23.12.2022 Update OPENSSL_Applink for 1.93_02 and later --hvn
+30.12.2023 Add Windows 11 23H2 notes --hvn
Notes:
diff --git a/helper_script/generate-test-pki b/helper_script/generate-test-pki
index de55d03..f5a944a 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_02';
+our $VERSION = '1.93_03';
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_02 of C<generate-test-pki>.
+This document describes version 1.93_03 of C<generate-test-pki>.
=head1 USAGE
diff --git a/helper_script/update-exported-constants b/helper_script/update-exported-constants
index 79b8b6c..712f13d 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_02';
+our $VERSION = '1.93_03';
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_02 of C<update-exported-constants>.
+This document describes version 1.93_03 of C<update-exported-constants>.
=head1 USAGE
diff --git a/inc/Test/Net/SSLeay.pm b/inc/Test/Net/SSLeay.pm
index 19b914a..cae88b9 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_02';
+our $VERSION = '1.93_03';
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_02 of Test::Net::SSLeay.
+This document describes version 1.93_03 of Test::Net::SSLeay.
=head1 SYNOPSIS
diff --git a/inc/Test/Net/SSLeay/Socket.pm b/inc/Test/Net/SSLeay/Socket.pm
index 521da23..479fde1 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_02';
+our $VERSION = '1.93_03';
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_02 of Test::Net::SSLeay::Socket.
+This document describes version 1.93_03 of Test::Net::SSLeay::Socket.
=head1 SYNOPSIS
diff --git a/lib/Net/SSLeay.pm b/lib/Net/SSLeay.pm
index af2315b..85bef47 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_02';
+$VERSION = '1.93_03';
@ISA = qw(Exporter);
diff --git a/lib/Net/SSLeay/Handle.pm b/lib/Net/SSLeay/Handle.pm
index e845733..7a93db9 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_02';
+$VERSION = '1.93_03';
my $Initialized; #-- only _initialize() once
my $Debug = 0; #-- pretty hokey