bumping version to 273 for new CPAN release; adding missing MANIFEST file so make dist will work
This commit is contained in:
parent
08d534c230
commit
c70df145f0
10
CHANGES
10
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
|
272
|
||||||
* Fix bug that didn't allow false PUT content. Thanks Thomas Hörndlein!
|
* Fix bug that didn't allow false PUT content. Thanks Thomas Hörndlein!
|
||||||
|
|
||||||
|
15
MANIFEST
Normal file
15
MANIFEST
Normal file
@ -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
|
2
META.yml
2
META.yml
@ -25,4 +25,4 @@ requires:
|
|||||||
perl: 5.8.0
|
perl: 5.8.0
|
||||||
resources:
|
resources:
|
||||||
license: http://dev.perl.org/licenses/
|
license: http://dev.perl.org/licenses/
|
||||||
version: 272
|
version: 273
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# REST::Client
|
# REST::Client
|
||||||
REST::Client module for CPAN.
|
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
|
||||||
|
@ -81,7 +81,7 @@ use 5.008_000;
|
|||||||
use constant TRUE => 1;
|
use constant TRUE => 1;
|
||||||
use constant FALSE => 0;
|
use constant FALSE => 0;
|
||||||
|
|
||||||
our ($VERSION) = ('$Rev: 272 $' =~ /(\d+)/);
|
our ($VERSION) = ('$Rev: 273 $' =~ /(\d+)/);
|
||||||
|
|
||||||
use URI;
|
use URI;
|
||||||
use LWP::UserAgent;
|
use LWP::UserAgent;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user