From c70df145f063d8e6b69d2ed9d50fa033958b4865 Mon Sep 17 00:00:00 2001 From: "Kevin L. Kane" Date: Wed, 5 Aug 2015 11:06:06 -0400 Subject: [PATCH] bumping version to 273 for new CPAN release; adding missing MANIFEST file so make dist will work --- CHANGES | 10 ++++++++++ MANIFEST | 15 +++++++++++++++ META.yml | 2 +- README.md | 2 +- lib/REST/Client.pm | 2 +- 5 files changed, 28 insertions(+), 3 deletions(-) create mode 100644 MANIFEST diff --git a/CHANGES b/CHANGES index 3d35d0c..9569e8d 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,13 @@ +273 +* Add ContentFile that will allow writing responses directly to file or + process using a call back through LWP::UserAgent + +* Seperated CA file from SSL cert and SSL key directives to allow for + hostname verificaiton and ca file specification independently. + Thanks David Imbs. + +* No longer depends on Crypt::SSLeay + 272 * Fix bug that didn't allow false PUT content. Thanks Thomas Hörndlein! diff --git a/MANIFEST b/MANIFEST new file mode 100644 index 0000000..20c7709 --- /dev/null +++ b/MANIFEST @@ -0,0 +1,15 @@ +CHANGES +META.yml +Makefile.PL +inc/Module/Install.pm +inc/Module/Install/Win32.pm +inc/Module/Install/Metadata.pm +inc/Module/Install/Base.pm +inc/Module/Install/Makefile.pm +inc/Module/Install/Fetch.pm +inc/Module/Install/WriteAll.pm +inc/Module/Install/Can.pm +README.md +t/basic.t +lib/REST/Client.pm +MANIFEST diff --git a/META.yml b/META.yml index 3e281a4..510b906 100644 --- a/META.yml +++ b/META.yml @@ -25,4 +25,4 @@ requires: perl: 5.8.0 resources: license: http://dev.perl.org/licenses/ -version: 272 +version: 273 diff --git a/README.md b/README.md index d08453d..85f833b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ # REST::Client REST::Client module for CPAN. -See http://search.cpan.org/~mcrawfor/REST-Client-272/lib/REST/Client.pm +See http://search.cpan.org/perldoc?REST::Client diff --git a/lib/REST/Client.pm b/lib/REST/Client.pm index 853338f..fa35fec 100644 --- a/lib/REST/Client.pm +++ b/lib/REST/Client.pm @@ -81,7 +81,7 @@ use 5.008_000; use constant TRUE => 1; use constant FALSE => 0; -our ($VERSION) = ('$Rev: 272 $' =~ /(\d+)/); +our ($VERSION) = ('$Rev: 273 $' =~ /(\d+)/); use URI; use LWP::UserAgent;