Skip to content

Commit

Permalink
Bumped version & updated changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
creaktive committed Apr 1, 2024
1 parent d639c40 commit c07cd5a
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 7 deletions.
5 changes: 5 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Change log for Net::Curl. See the complete list of changes at:
https://github.com/sparky/perl-Net-Curl/commits/master

0.56 2024-04-01T07:57+00Z
[Stanislaw Pusep <[email protected]>]
- More portable tests for bad URL
- Synced symbols-in-versions from libcurl/8.7.1

0.55 2023-09-20T06:25:00Z
[Stanislaw Pusep <[email protected]>]
- Fix t/old-01basic.t test for libcurl without CURLOPT_PROXYHEADER
Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
** Net::Curl 0.55 **
** Net::Curl 0.56 **

STATUS: This package is working and the interface is mostly stable.

Expand Down
2 changes: 1 addition & 1 deletion inc/Compat.pm
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ VERSION
# Dirty hack so Test::ConsistentVersion passes
sub VERSION {
return (caller)[0] eq 'Test::ConsistentVersion'
? '0.55'
? '0.56'
: $VERSION;
}

Expand Down
2 changes: 1 addition & 1 deletion lib/Net/Curl.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use Exporter 'import';
our @ISA;
our $VERSION;
BEGIN {
$VERSION = '0.55';
$VERSION = '0.56';

my $loaded = 0;

Expand Down
2 changes: 1 addition & 1 deletion lib/Net/Curl/Easy.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;
use Net::Curl ();
use Exporter 'import';

our $VERSION = '0.55';
our $VERSION = '0.56';

our @EXPORT_OK = grep { /^CURL/x } keys %{Net::Curl::Easy::};
our %EXPORT_TAGS = ( constants => \@EXPORT_OK );
Expand Down
2 changes: 1 addition & 1 deletion lib/Net/Curl/Form.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;
use Net::Curl ();
use Exporter 'import';

our $VERSION = '0.55';
our $VERSION = '0.56';

our @EXPORT_OK = grep { /^CURL/x } keys %{Net::Curl::Form::};
our %EXPORT_TAGS = ( constants => \@EXPORT_OK );
Expand Down
2 changes: 1 addition & 1 deletion lib/Net/Curl/Multi.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;
use Net::Curl ();
use Exporter 'import';

our $VERSION = '0.55';
our $VERSION = '0.56';

our @EXPORT_OK = grep { /^CURL/x } keys %{Net::Curl::Multi::};
our %EXPORT_TAGS = ( constants => \@EXPORT_OK );
Expand Down
2 changes: 1 addition & 1 deletion lib/Net/Curl/Share.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;
use Net::Curl ();
use Exporter 'import';

our $VERSION = '0.55';
our $VERSION = '0.56';

our @EXPORT_OK = grep { /^CURL/x } keys %{Net::Curl::Share::};
our %EXPORT_TAGS = ( constants => \@EXPORT_OK );
Expand Down

0 comments on commit c07cd5a

Please sign in to comment.