Skip to content

Commit

Permalink
Developer release 1.93_04
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
chrisnovakovic committed Jan 5, 2024
1 parent 87d4f7a commit 9a983ab
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 11 deletions.
6 changes: 5 additions & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions helper_script/generate-test-pki
Original file line number Diff line number Diff line change
Expand Up @@ -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) = @_;
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions helper_script/update-exported-constants
Original file line number Diff line number Diff line change
Expand Up @@ -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) = @_;
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions inc/Test/Net/SSLeay.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions inc/Test/Net/SSLeay/Socket.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/Net/SSLeay.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down
2 changes: 1 addition & 1 deletion lib/Net/SSLeay/Handle.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9a983ab

Please sign in to comment.