Skip to content

Commit af1b10d

Browse files
committed
Checking in changes prior to tagging of version 1.06.
Changelog diff is: diff --git a/Changes b/Changes index 8742b3b..1d83ec3 100644 --- a/Changes +++ b/Changes @@ -3,6 +3,9 @@ Changes {{$NEXT}} +1.06 2014-10-07T01:58:56Z + - Messed up previous release. Re-releasing + 1.05 2014-10-07T01:57:38Z - Work better with batch requests: Now responses are properly returned as list as long as the request is a list as well (Arata Makoto)
1 parent 85f2ed5 commit af1b10d

9 files changed

Lines changed: 12 additions & 8 deletions

File tree

Changes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ Changes
33

44
{{$NEXT}}
55

6+
1.06 2014-10-07T01:58:56Z
7+
- Messed up previous release. Re-releasing
8+
69
1.05 2014-10-07T01:57:38Z
710
- Work better with batch requests: Now responses are properly returned
811
as list as long as the request is a list as well (Arata Makoto)

META.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,15 @@
7878
"web" : "ssh://git@github.com/lestrrat/JSON-RPC"
7979
}
8080
},
81-
"version" : "1.05",
81+
"version" : "1.06",
8282
"x_contributors" : [
8383
"Yoshimitsu Torii <yoshimitsu.torii@gmail.com>",
8484
"Stanislav Lechev [AngelFire] <af@0xAF.org>",
8585
"Kazuhiro Shibuya <stevenlabs@gmail.com>",
8686
"David Steinbrunner <dsteinbrunner@pobox.com>",
8787
"ThePeePs <patrick@thepeeps.net>",
8888
"Kirill Bogdanov <Sco76@hackerdom.ru>",
89+
"ar_tama <makoto.arata@dena.com>",
8990
"Daisuke Maki <lestrrat+github@gmail.com>"
9091
]
9192
}

lib/JSON/RPC.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package JSON::RPC;
22
use strict;
3-
our $VERSION = '1.05';
3+
our $VERSION = '1.06';
44

55
1;
66

lib/JSON/RPC/Legacy/Client.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use Carp ();
1111

1212
package JSON::RPC::Legacy::Client;
1313

14-
$JSON::RPC::Legacy::Client::VERSION = '1.05';
14+
$JSON::RPC::Legacy::Client::VERSION = '1.06';
1515

1616
use LWP::UserAgent;
1717

lib/JSON/RPC/Legacy/Procedure.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ package JSON::RPC::Legacy::Procedure;
44
# http://json-rpc.org/wd/JSON-RPC-1-1-WD-20060807.html
55
#
66

7-
$JSON::RPC::Legacy::Procedure::VERSION = '1.05';
7+
$JSON::RPC::Legacy::Procedure::VERSION = '1.06';
88

99
use strict;
1010
use attributes;

lib/JSON/RPC/Legacy/Server.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ BEGIN {
2525
}
2626

2727

28-
$JSON::RPC::Legacy::Server::VERSION = '1.05';
28+
$JSON::RPC::Legacy::Server::VERSION = '1.06';
2929

3030

3131
BEGIN {

lib/JSON/RPC/Legacy/Server/Apache2.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ use Apache2::RequestIO ();
1414
use Apache2::RequestUtil ();
1515

1616

17-
$JSON::RPC::Legacy::Server::Apache::VERSION = '1.05';
17+
$JSON::RPC::Legacy::Server::Apache::VERSION = '1.06';
1818

1919

2020
sub handler {

lib/JSON/RPC/Legacy/Server/CGI.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use JSON::RPC::Legacy::Server; # for old Perl 5.005
77

88
use base qw(JSON::RPC::Legacy::Server);
99

10-
$JSON::RPC::Legacy::Server::CGI::VERSION = '1.05';
10+
$JSON::RPC::Legacy::Server::CGI::VERSION = '1.06';
1111

1212
sub new {
1313
my $class = shift;

lib/JSON/RPC/Legacy/Server/Daemon.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use strict;
55
use JSON::RPC::Legacy::Server; # for old Perl 5.005
66
use base qw(JSON::RPC::Legacy::Server);
77

8-
$JSON::RPC::Legacy::Server::Daemon::VERSION = '1.05';
8+
$JSON::RPC::Legacy::Server::Daemon::VERSION = '1.06';
99

1010
use Data::Dumper;
1111

0 commit comments

Comments
 (0)