bumping version to 273 for new CPAN release; adding missing MANIFEST file so make dist will work

This commit is contained in:
Kevin L. Kane 2015-08-05 11:06:06 -04:00
parent 08d534c230
commit c70df145f0
5 changed files with 28 additions and 3 deletions

10
CHANGES
View File

@ -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!

15
MANIFEST Normal file
View 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

View File

@ -25,4 +25,4 @@ requires:
perl: 5.8.0
resources:
license: http://dev.perl.org/licenses/
version: 272
version: 273

View File

@ -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

View File

@ -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;