From c07cd5a6828341852d1fcfb9133f04c84f19ba37 Mon Sep 17 00:00:00 2001 From: Stanislaw Pusep Date: Mon, 1 Apr 2024 10:11:02 +0200 Subject: [PATCH] Bumped version & updated changelog --- Changes | 5 +++++ README | 2 +- inc/Compat.pm | 2 +- lib/Net/Curl.pm | 2 +- lib/Net/Curl/Easy.pm | 2 +- lib/Net/Curl/Form.pm | 2 +- lib/Net/Curl/Multi.pm | 2 +- lib/Net/Curl/Share.pm | 2 +- 8 files changed, 12 insertions(+), 7 deletions(-) diff --git a/Changes b/Changes index 071709d..98d0962 100644 --- a/Changes +++ b/Changes @@ -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 ] + - More portable tests for bad URL + - Synced symbols-in-versions from libcurl/8.7.1 + 0.55 2023-09-20T06:25:00Z [Stanislaw Pusep ] - Fix t/old-01basic.t test for libcurl without CURLOPT_PROXYHEADER diff --git a/README b/README index 473cf9a..9e717a6 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -** Net::Curl 0.55 ** +** Net::Curl 0.56 ** STATUS: This package is working and the interface is mostly stable. diff --git a/inc/Compat.pm b/inc/Compat.pm index d7722ff..1efcd8b 100644 --- a/inc/Compat.pm +++ b/inc/Compat.pm @@ -69,7 +69,7 @@ VERSION # Dirty hack so Test::ConsistentVersion passes sub VERSION { return (caller)[0] eq 'Test::ConsistentVersion' - ? '0.55' + ? '0.56' : $VERSION; } diff --git a/lib/Net/Curl.pm b/lib/Net/Curl.pm index 41103c3..58869e2 100644 --- a/lib/Net/Curl.pm +++ b/lib/Net/Curl.pm @@ -8,7 +8,7 @@ use Exporter 'import'; our @ISA; our $VERSION; BEGIN { - $VERSION = '0.55'; + $VERSION = '0.56'; my $loaded = 0; diff --git a/lib/Net/Curl/Easy.pm b/lib/Net/Curl/Easy.pm index 22d61d4..b79a8e4 100644 --- a/lib/Net/Curl/Easy.pm +++ b/lib/Net/Curl/Easy.pm @@ -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 ); diff --git a/lib/Net/Curl/Form.pm b/lib/Net/Curl/Form.pm index 5453207..eb894bd 100644 --- a/lib/Net/Curl/Form.pm +++ b/lib/Net/Curl/Form.pm @@ -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 ); diff --git a/lib/Net/Curl/Multi.pm b/lib/Net/Curl/Multi.pm index 937ffcf..81bf141 100644 --- a/lib/Net/Curl/Multi.pm +++ b/lib/Net/Curl/Multi.pm @@ -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 ); diff --git a/lib/Net/Curl/Share.pm b/lib/Net/Curl/Share.pm index 7b0a0ed..c3476ee 100644 --- a/lib/Net/Curl/Share.pm +++ b/lib/Net/Curl/Share.pm @@ -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 );