Skip to content

Commit

Permalink
Sync Net::SSLeay and Net::SSLeay::Handle version numbers
Browse files Browse the repository at this point in the history
Increment Net::SSLeay::Handle's version number to keep it in sync with
Net::SSLeay's, thus satisfying Kwalitee's consistent_version metric.

Closes #23.
  • Loading branch information
chrisnovakovic committed Jul 30, 2018
1 parent f2bd8bc commit 6554e99
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
Revision history for Perl extension Net::SSLeay.

???
- Increment Net::SSLeay::Handle's version number to keep it in sync
with Net::SSLeay's, thus satisfying Kwalitee's consistent_version
metric.

1.86_04 2018-07-30
- Re-add SSLv3_method() for OpenSSL 1.0.2 and above. Fixes
RT#101484.
Expand Down
2 changes: 1 addition & 1 deletion lib/Net/SSLeay.pm
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ $Net::SSLeay::slowly = 0;
$Net::SSLeay::random_device = '/dev/urandom';
$Net::SSLeay::how_random = 512;

$VERSION = '1.86_04'; # Version in META.yml is automatically updated
$VERSION = '1.86_04'; # Also update $Net::SSLeay::Handle::VERSION
@ISA = qw(Exporter);

#BEWARE:
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 @@ -54,7 +54,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 = '0.61';
$VERSION = '0.86_04';

my $Initialized; #-- only _initialize() once
my $Debug = 0; #-- pretty hokey
Expand Down

0 comments on commit 6554e99

Please sign in to comment.