Skip to content

Commit

Permalink
Update Changes, bump version, regenerate META
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Maischein committed Oct 23, 2023
1 parent 6b86919 commit 774edf3
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 11 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion META.json
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
2 changes: 1 addition & 1 deletion META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/HTTP/Request/CurlParameters.pm
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
2 changes: 1 addition & 1 deletion lib/HTTP/Request/FromCurl.pm
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
2 changes: 1 addition & 1 deletion lib/HTTP/Request/FromFetch.pm
Original file line number Diff line number Diff line change
@@ -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';
Expand Down
2 changes: 1 addition & 1 deletion lib/HTTP/Request/FromWget.pm
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
2 changes: 1 addition & 1 deletion script/curl2perl
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion script/pcurl.pl
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion script/pwget.pl
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion script/request2perl
Original file line number Diff line number Diff line change
Expand Up @@ -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; } }
Expand Down

0 comments on commit 774edf3

Please sign in to comment.