Skip to content

Commit

Permalink
Bump version, regenerate README, regenerate META.*
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Maischein committed Oct 22, 2023
1 parent a08c625 commit 8b9adb6
Show file tree
Hide file tree
Showing 12 changed files with 21 additions and 14 deletions.
7 changes: 7 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
0.53 2023-10-22
* Properly output form arguments when regenerating a curl command line
* Fix code generation for form submission with LWP::UserAgent
* disable Test2::V0 srand() tomfoolery
* clean up our tempfiles
* Test Mojolicious if available for fetch() parameter generation

0.52 2023-09-15
* Switch test suite to Test2::V0
* Suppress trivial Content-Length headers in ->as_curl
Expand Down
6 changes: 3 additions & 3 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"Max Maischein <[email protected]>"
],
"dynamic_config" : 0,
"generated_by" : "ExtUtils::MakeMaker version 7.44, CPAN::Meta::Converter version 2.150010",
"generated_by" : "ExtUtils::MakeMaker version 7.64, CPAN::Meta::Converter version 2.150010",
"license" : [
"perl_5"
],
Expand Down Expand Up @@ -78,7 +78,7 @@
"web" : "https://github.com/Corion/HTTP-Request-FromCurl"
}
},
"version" : "0.52",
"x_serialization_backend" : "JSON::PP version 4.11",
"version" : "0.53",
"x_serialization_backend" : "JSON::PP version 4.07",
"x_static_install" : 1
}
4 changes: 2 additions & 2 deletions META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ build_requires:
configure_requires:
ExtUtils::MakeMaker: '0'
dynamic_config: 0
generated_by: 'ExtUtils::MakeMaker version 7.44, CPAN::Meta::Converter version 2.150010'
generated_by: 'ExtUtils::MakeMaker version 7.64, CPAN::Meta::Converter version 2.150010'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
Expand Down 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.52'
version: '0.53'
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.52.
This document describes version 0.53.


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.52;
package HTTP::Request::CurlParameters 0.53;
use strict;
use warnings;
use HTTP::Request;
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.52;
package HTTP::Request::FromCurl 0.53;
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.52;
package HTTP::Request::FromFetch 0.53;
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.52;
package HTTP::Request::FromWget 0.53;
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.52';
our $VERSION = '0.53';

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.52';
our $VERSION = '0.53';

# 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.52';
our $VERSION = '0.53';

# 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.52';
our $VERSION = '0.53';

my $has_tidy;
BEGIN { eval { require Perl::Tidy; $has_tidy = 1; } }
Expand Down

0 comments on commit 8b9adb6

Please sign in to comment.