Skip to content

Commit

Permalink
Version 0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
whindsx committed Mar 13, 2023
1 parent 2680472 commit e59f204
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion META.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,5 @@
},
"homepage" : "https://github.com/whindsx/Bitcoin-RPC-Client"
},
"version" : "0.11"
"version" : "0.12"
}
2 changes: 1 addition & 1 deletion META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ requires:
perl: '5.006'
resources:
repository: https://github.com/whindsx/Bitcoin-RPC-Client
version: '0.11'
version: '0.12'
2 changes: 1 addition & 1 deletion lib/Bitcoin/RPC/Client.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit e59f204

Please sign in to comment.