Codebase list libfurl-perl / c75a54f
Checking in changes prior to tagging of version 3.08. Changelog diff is: diff --git Changes Changes index 44b41bc..480c5a2 100644 --- Changes +++ Changes @@ -2,6 +2,13 @@ Revision history for Perl module Furl {{$NEXT}} +3.08 2015-08-06T09:32:19Z + + - Handle cookies while redirection. + (tokuhirom) + - delete method accept message body + (kimoto) + 3.07 2015-04-21T03:42:39Z - Depends on latest Test::TCP Tokuhiro Matsuno 8 years ago
4 changed file(s) with 13 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
00 Revision history for Perl module Furl
11
22 {{$NEXT}}
3
4 3.08 2015-08-06T09:32:19Z
5
6 - Handle cookies while redirection.
7 (tokuhirom)
8 - delete method accept message body
9 (kimoto)
310
411 3.07 2015-04-21T03:42:39Z
512
33 "Tokuhiro Matsuno <tokuhirom@gmail.com>"
44 ],
55 "dynamic_config" : 0,
6 "generated_by" : "Minilla/v2.2.0, CPAN::Meta::Converter version 2.141520",
6 "generated_by" : "Minilla/v2.4.1, CPAN::Meta::Converter version 2.150001",
77 "license" : [
88 "perl_5"
99 ],
117117 "web" : "https://github.com/tokuhirom/Furl"
118118 }
119119 },
120 "version" : "3.07",
120 "version" : "3.08",
121121 "x_contributors" : [
122122 "Keiji, Yoshimi <walf443@gmail.com>",
123123 "Fuji, Goro <gfuji@cpan.org>",
137137 "HIROSE Masaaki <hirose31@gmail.com>",
138138 "Kazuho Oku <kazuhooku@gmail.com>",
139139 "Jari Salmela <bissei@users.noreply.github.com>",
140 "tarao <tarao.gnn@gmail.com>"
140 "tarao <tarao.gnn@gmail.com>",
141 "kimoto <peerler@gmail.com>"
141142 ]
142143 }
33 use base qw/Exporter/;
44 use 5.008001;
55
6 our $VERSION = '3.07';
6 our $VERSION = '3.08';
77
88 use Carp ();
99 use Furl::ConnectionCache;
55 use Furl::Request;
66 use Furl::Response;
77 use Carp ();
8 our $VERSION = '3.07';
8 our $VERSION = '3.08';
99
1010 use 5.008001;
1111