Codebase list libfurl-perl / 3.09
Checking in changes prior to tagging of version 3.09. Changelog diff is: diff --git a/Changes b/Changes index d471af7..b56dd99 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,12 @@ Revision history for Perl module Furl {{$NEXT}} +3.09 2016-07-21T14:10:52Z + + - Support 1xx status + - Fix test on Windows issue + - Fix httpoxy + 3.08 2015-08-06T09:32:19Z - Handle cookies while redirection. Syohei YOSHIDA 7 years ago
5 changed file(s) with 19 addition(s) and 64 deletion(s). Raw diff Collapse all Expand all
33 # =========================================================================
44
55 use 5.008_001;
6 use strict;
67
7 use strict;
8 use warnings;
9 use utf8;
8 use Module::Build::Tiny 0.035;
109
11 use Module::Build;
12 use File::Basename;
13 use File::Spec;
10 Build_PL();
1411
15 my %args = (
16 license => 'perl',
17 dynamic_config => 0,
18
19 configure_requires => {
20 'Module::Build' => 0.38,
21 },
22
23 name => 'Furl',
24 module_name => 'Furl',
25 allow_pureperl => 0,
26
27 script_files => [glob('script/*'), glob('bin/*')],
28 c_source => [qw()],
29 PL_files => {},
30
31 test_files => ((-d '.git' || $ENV{RELEASE_TESTING}) && -d 'xt') ? 't/ xt/' : 't/',
32 recursive_test_files => 1,
33
34
35 );
36 if (-d 'share') {
37 $args{share_dir} = 'share';
38 }
39
40 my $builder = Module::Build->subclass(
41 class => 'MyBuilder',
42 code => q{
43 sub ACTION_distmeta {
44 die "Do not run distmeta. Install Minilla and `minil install` instead.\n";
45 }
46 sub ACTION_installdeps {
47 die "Do not run installdeps. Run `cpanm --installdeps .` instead.\n";
48 }
49 }
50 )->new(%args);
51 $builder->create_build_script();
52
53 use File::Copy;
54
55 print "cp META.json MYMETA.json\n";
56 copy("META.json","MYMETA.json") or die "Copy failed(META.json): $!";
57
58 if (-f 'META.yml') {
59 print "cp META.yml MYMETA.yml\n";
60 copy("META.yml","MYMETA.yml") or die "Copy failed(META.yml): $!";
61 } else {
62 print "There is no META.yml... You may install this module from the repository...\n";
63 }
64
00 Revision history for Perl module Furl
11
22 {{$NEXT}}
3
4 3.09 2016-07-21T14:10:52Z
5
6 - Support 1xx status
7 - Fix test on Windows issue
8 - Fix httpoxy
39
410 3.08 2015-08-06T09:32:19Z
511
33 "Tokuhiro Matsuno <tokuhirom@gmail.com>"
44 ],
55 "dynamic_config" : 0,
6 "generated_by" : "Minilla/v2.4.1, CPAN::Meta::Converter version 2.150001",
6 "generated_by" : "Minilla/v3.0.2, CPAN::Meta::Converter version 2.150001",
77 "license" : [
88 "perl_5"
99 ],
2727 "prereqs" : {
2828 "configure" : {
2929 "requires" : {
30 "Module::Build" : "0.38"
30 "Module::Build::Tiny" : "0.035"
3131 }
3232 },
3333 "develop" : {
117117 "web" : "https://github.com/tokuhirom/Furl"
118118 }
119119 },
120 "version" : "3.08",
120 "version" : "3.09",
121121 "x_contributors" : [
122122 "Keiji, Yoshimi <walf443@gmail.com>",
123123 "Fuji, Goro <gfuji@cpan.org>",
124124 "lestrrat <lestrrat+github@gmail.com>",
125125 "Audrey Tang <audreyt@audreyt.org>",
126 "mattn <mattn.jp@gmail.com>",
127126 "Fuji Goro <fuji.goro@dena.jp>",
128127 "Fuji, Goro <g.psy.va@gmail.com>",
129128 "s-aska <s.aska.org@gmail.com>",
130129 "ikasam_a <masaki.nakagawa@gmail.com>",
131130 "xaicron <xaicron@gmail.com>",
132 "Syohei YOSHIDA <syohex@gmail.com>",
133131 "Neil Bowers <neil@bowers.com>",
134132 "Toshio Ito <debug.ito@gmail.com>",
135133 "bayashi <bayashi@cpan.org>",
138136 "Kazuho Oku <kazuhooku@gmail.com>",
139137 "Jari Salmela <bissei@users.noreply.github.com>",
140138 "tarao <tarao.gnn@gmail.com>",
141 "kimoto <peerler@gmail.com>"
139 "kimoto <peerler@gmail.com>",
140 "Breno G. de Oliveira <garu@cpan.org>",
141 "Jiro Nishiguchi <jiro@cpan.org>",
142 "Yasuhiro Matsumoto <mattn.jp@gmail.com>",
143 "Syohei YOSHIDA <syohex@gmail.com>"
142144 ]
143145 }
33 use base qw/Exporter/;
44 use 5.008001;
55
6 our $VERSION = '3.08';
6 our $VERSION = '3.09';
77
88 use Carp ();
99 use Furl::ConnectionCache;
55 use Furl::Request;
66 use Furl::Response;
77 use Carp ();
8 our $VERSION = '3.08';
8 our $VERSION = '3.09';
99
1010 use 5.008001;
1111