Skip to content

Commit febc537

Browse files
committed
v2.1.2
1 parent 41b5d9b commit febc537

File tree

7 files changed

+21
-18
lines changed

7 files changed

+21
-18
lines changed

Build.PL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This Build.PL for JSON-RPC2 was generated by Dist::Zilla::Plugin::ModuleBuildTiny 0.014.
1+
# This Build.PL for JSON-RPC2 was generated by Dist::Zilla::Plugin::ModuleBuildTiny 0.015.
22
use strict;
33
use warnings;
44

Changes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
Revision history for JSON-RPC2
22

33
{{$NEXT}}
4+
5+
v2.1.2 2018-04-03 18:14:29 EEST
46
- Reformat doc.
57

68
v2.1.1 2016-02-18 10:09:58 EET

META.json

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"Alex Efros <powerman@cpan.org>"
55
],
66
"dynamic_config" : 0,
7-
"generated_by" : "Dist::Zilla version 5.043, Dist::Milla version v1.0.15, CPAN::Meta::Converter version 2.150005",
7+
"generated_by" : "Dist::Milla version v1.0.18, Dist::Zilla version 6.011, CPAN::Meta::Converter version 2.150010",
88
"license" : [
99
"mit"
1010
],
1111
"meta-spec" : {
1212
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
13-
"version" : 2
13+
"version" : "2"
1414
},
1515
"name" : "JSON-RPC2",
1616
"no_index" : {
@@ -31,7 +31,7 @@
3131
},
3232
"develop" : {
3333
"requires" : {
34-
"Dist::Milla" : "v1.0.15",
34+
"Dist::Milla" : "v1.0.18",
3535
"Test::Distribution" : "0",
3636
"Test::Perl::Critic" : "0",
3737
"Test::Pod" : "1.41"
@@ -57,15 +57,15 @@
5757
"provides" : {
5858
"JSON::RPC2" : {
5959
"file" : "lib/JSON/RPC2.pm",
60-
"version" : "v2.1.1"
60+
"version" : "v2.1.2"
6161
},
6262
"JSON::RPC2::Client" : {
6363
"file" : "lib/JSON/RPC2/Client.pm",
64-
"version" : "v2.1.1"
64+
"version" : "v2.1.2"
6565
},
6666
"JSON::RPC2::Server" : {
6767
"file" : "lib/JSON/RPC2/Server.pm",
68-
"version" : "v2.1.1"
68+
"version" : "v2.1.2"
6969
}
7070
},
7171
"release_status" : "stable",
@@ -80,9 +80,10 @@
8080
"web" : "https://github.com/powerman/perl-JSON-RPC2"
8181
}
8282
},
83-
"version" : "v2.1.1",
83+
"version" : "v2.1.2",
8484
"x_contributors" : [
8585
"Scott Miller (ROS) <scott.miller@veritas.com>"
86-
]
86+
],
87+
"x_serialization_backend" : "JSON::XS version 3.04"
8788
}
8889

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ JSON::RPC2 - Transport-independent implementation of JSON-RPC 2.0
77

88
# VERSION
99

10-
This document describes JSON::RPC2 version v2.1.1
10+
This document describes JSON::RPC2 version v2.1.2
1111

1212
# SYNOPSIS
1313

@@ -108,11 +108,11 @@ Feel free to fork the repository and submit pull requests.
108108

109109
# AUTHOR
110110

111-
Alex Efros &lt;powerman@cpan.org>
111+
Alex Efros <powerman@cpan.org>
112112

113113
# COPYRIGHT AND LICENSE
114114

115-
This software is Copyright (c) 2009- by Alex Efros &lt;powerman@cpan.org>.
115+
This software is Copyright (c) 2009- by Alex Efros <powerman@cpan.org>.
116116

117117
This is free software, licensed under:
118118

lib/JSON/RPC2.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use strict;
55
use utf8;
66
use Carp;
77

8-
our $VERSION = 'v2.1.1';
8+
our $VERSION = 'v2.1.2';
99

1010

1111
1; # Magic true value required at end of module
@@ -20,7 +20,7 @@ JSON::RPC2 - Transport-independent implementation of JSON-RPC 2.0
2020
2121
=head1 VERSION
2222
23-
This document describes JSON::RPC2 version v2.1.1
23+
This document describes JSON::RPC2 version v2.1.2
2424
2525
2626
=head1 SYNOPSIS

lib/JSON/RPC2/Client.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use strict;
55
use utf8;
66
use Carp;
77

8-
our $VERSION = 'v2.1.1';
8+
our $VERSION = 'v2.1.2';
99

1010
use JSON::MaybeXS;
1111
use Scalar::Util qw( weaken refaddr );
@@ -198,7 +198,7 @@ JSON::RPC2::Client - Transport-independent JSON-RPC 2.0 client
198198
199199
=head1 VERSION
200200
201-
This document describes JSON::RPC2::Client version v2.1.1
201+
This document describes JSON::RPC2::Client version v2.1.2
202202
203203
204204
=head1 SYNOPSIS

lib/JSON/RPC2/Server.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use strict;
55
use utf8;
66
use Carp;
77

8-
our $VERSION = 'v2.1.1';
8+
our $VERSION = 'v2.1.2';
99

1010
use JSON::MaybeXS;
1111

@@ -204,7 +204,7 @@ JSON::RPC2::Server - Transport-independent JSON-RPC 2.0 server
204204
205205
=head1 VERSION
206206
207-
This document describes JSON::RPC2::Server version v2.1.1
207+
This document describes JSON::RPC2::Server version v2.1.2
208208
209209
210210
=head1 SYNOPSIS

0 commit comments

Comments
 (0)