From 774edf3551c51add21f301e600fbae7d1c2392c3 Mon Sep 17 00:00:00 2001 From: Max Maischein Date: Mon, 23 Oct 2023 18:44:36 +0200 Subject: [PATCH] Update Changes, bump version, regenerate META --- Changes | 3 +++ META.json | 2 +- META.yml | 2 +- README | 2 +- lib/HTTP/Request/CurlParameters.pm | 2 +- lib/HTTP/Request/FromCurl.pm | 2 +- lib/HTTP/Request/FromFetch.pm | 2 +- lib/HTTP/Request/FromWget.pm | 2 +- script/curl2perl | 2 +- script/pcurl.pl | 2 +- script/pwget.pl | 2 +- script/request2perl | 2 +- 12 files changed, 14 insertions(+), 11 deletions(-) diff --git a/Changes b/Changes index 823d0fa..3c7d656 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,6 @@ +0.54 2023-10-23 + * Restore compatibility with 5.020 + 0.53 2023-10-22 * Properly output form arguments when regenerating a curl command line * Fix code generation for form submission with LWP::UserAgent diff --git a/META.json b/META.json index be43039..41fb52f 100644 --- a/META.json +++ b/META.json @@ -78,7 +78,7 @@ "web" : "https://github.com/Corion/HTTP-Request-FromCurl" } }, - "version" : "0.53", + "version" : "0.54", "x_serialization_backend" : "JSON::PP version 4.07", "x_static_install" : 1 } diff --git a/META.yml b/META.yml index cebebf0..7ae6dc5 100644 --- a/META.yml +++ b/META.yml @@ -47,6 +47,6 @@ resources: bugtracker: https://github.com/Corion/HTTP-Request-FromCurl/issues license: https://dev.perl.org/licenses/ repository: git://github.com/Corion/HTTP-Request-FromCurl.git -version: '0.53' +version: '0.54' x_serialization_backend: 'CPAN::Meta::YAML version 0.018' x_static_install: 1 diff --git a/README b/README index 98e32ee..c93158c 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ HTTP::Request::FromCurl - create a HTTP::Request from a curl command line -This document describes version 0.53. +This document describes version 0.54. INSTALLATION diff --git a/lib/HTTP/Request/CurlParameters.pm b/lib/HTTP/Request/CurlParameters.pm index 9bbc5e2..815d653 100644 --- a/lib/HTTP/Request/CurlParameters.pm +++ b/lib/HTTP/Request/CurlParameters.pm @@ -1,4 +1,4 @@ -package HTTP::Request::CurlParameters 0.53; +package HTTP::Request::CurlParameters 0.54; use 5.020; use HTTP::Request; use HTTP::Request::Common; diff --git a/lib/HTTP/Request/FromCurl.pm b/lib/HTTP/Request/FromCurl.pm index 3b0cc50..9b178cc 100644 --- a/lib/HTTP/Request/FromCurl.pm +++ b/lib/HTTP/Request/FromCurl.pm @@ -1,4 +1,4 @@ -package HTTP::Request::FromCurl 0.53; +package HTTP::Request::FromCurl 0.54; use 5.020; use File::Basename 'basename'; use HTTP::Request; diff --git a/lib/HTTP/Request/FromFetch.pm b/lib/HTTP/Request/FromFetch.pm index babdbbc..981ff41 100644 --- a/lib/HTTP/Request/FromFetch.pm +++ b/lib/HTTP/Request/FromFetch.pm @@ -1,4 +1,4 @@ -package HTTP::Request::FromFetch 0.53; +package HTTP::Request::FromFetch 0.54; use 5.020; use feature 'signatures'; no warnings 'experimental::signatures'; diff --git a/lib/HTTP/Request/FromWget.pm b/lib/HTTP/Request/FromWget.pm index f939f5a..1efe52c 100644 --- a/lib/HTTP/Request/FromWget.pm +++ b/lib/HTTP/Request/FromWget.pm @@ -1,4 +1,4 @@ -package HTTP::Request::FromWget 0.53; +package HTTP::Request::FromWget 0.54; use 5.020; use HTTP::Request; use HTTP::Request::Common; diff --git a/script/curl2perl b/script/curl2perl index 74a9d20..15f9b66 100644 --- a/script/curl2perl +++ b/script/curl2perl @@ -6,7 +6,7 @@ use Pod::Usage; use HTTP::Request::FromCurl; -our $VERSION = '0.53'; +our $VERSION = '0.54'; Getopt::Long::Configure('pass_through'); GetOptions( diff --git a/script/pcurl.pl b/script/pcurl.pl index 9347f63..42166dc 100644 --- a/script/pcurl.pl +++ b/script/pcurl.pl @@ -6,7 +6,7 @@ use LWP::UserAgent; use Getopt::Long ':config','pass_through'; -our $VERSION = '0.53'; +our $VERSION = '0.54'; # parse output options from @ARGV GetOptions( diff --git a/script/pwget.pl b/script/pwget.pl index 51ebb5f..53063a2 100644 --- a/script/pwget.pl +++ b/script/pwget.pl @@ -6,7 +6,7 @@ use LWP::UserAgent; use Getopt::Long ':config','pass_through'; -our $VERSION = '0.53'; +our $VERSION = '0.54'; # parse output options from @ARGV GetOptions( diff --git a/script/request2perl b/script/request2perl index a666de6..1f1e50a 100644 --- a/script/request2perl +++ b/script/request2perl @@ -9,7 +9,7 @@ use HTTP::Request::FromWget; use feature 'signatures'; no warnings 'experimental::signatures'; -our $VERSION = '0.53'; +our $VERSION = '0.54'; my $has_tidy; BEGIN { eval { require Perl::Tidy; $has_tidy = 1; } }