From e59f20446022111f2a69c39991848d865e96d8af Mon Sep 17 00:00:00 2001 From: Wesley Hinds Date: Mon, 13 Mar 2023 16:00:48 -0500 Subject: [PATCH] Version 0.12 --- Changes | 4 ++++ META.json | 2 +- META.yml | 2 +- lib/Bitcoin/RPC/Client.pm | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Changes b/Changes index 4a9f6b7..906595b 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for Bitcoin::RPC::Client +0.12 2023-3-13/16 + - 'die' when invalid JSON is returned from RPC service (GH#4) + - Updated documentation + 0.11 2020-7-8/16 - SSL_verify_mode must be a numeric (GH#3) - Updated documentation diff --git a/META.json b/META.json index 5d8bd4b..c8edfb4 100644 --- a/META.json +++ b/META.json @@ -50,5 +50,5 @@ }, "homepage" : "https://github.com/whindsx/Bitcoin-RPC-Client" }, - "version" : "0.11" + "version" : "0.12" } diff --git a/META.yml b/META.yml index 529070c..0210667 100644 --- a/META.yml +++ b/META.yml @@ -23,4 +23,4 @@ requires: perl: '5.006' resources: repository: https://github.com/whindsx/Bitcoin-RPC-Client -version: '0.11' +version: '0.12' diff --git a/lib/Bitcoin/RPC/Client.pm b/lib/Bitcoin/RPC/Client.pm index 73417ba..0001016 100644 --- a/lib/Bitcoin/RPC/Client.pm +++ b/lib/Bitcoin/RPC/Client.pm @@ -8,7 +8,7 @@ use warnings; use Moo; use JSON::RPC::Legacy::Client; -our $VERSION = '0.11'; +our $VERSION = '0.12'; has jsonrpc => (is => "lazy", default => sub { "JSON::RPC::Legacy::Client"->new }); has user => (is => 'ro');