Skip to content

Commit e6be073

Browse files
author
Atif Nazir
committed
version bump + fix litecoin p2sh version number
1 parent 8210abb commit e6be073

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Or install it yourself as:
1717
$ gem install block_io
1818

1919
## Changelog
20+
*07/21/21*: Version 3.0.2 fixes Litecoin P2SH address version.
2021
*06/09/21*: Version 3.0.1 implements use of dynamic decryption algorithms.
2122
*04/14/21*: BREAKING CHANGES. Version 3.0.0. Remove support for Ruby < 2.4.0, and Windows. Behavior and interfaces have changed. By upgrading you'll need to revise your code and tests.
2223

block_io.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
2323
spec.add_development_dependency "rspec", "~> 3.6", ">= 3.6"
2424
spec.add_development_dependency "webmock", "~> 3.12", "< 4.0"
2525
spec.add_runtime_dependency "bitcoinrb", "~> 0.7.0", "= 0.7.0"
26-
spec.add_runtime_dependency "http", "~> 4.4.1", ">= 4.4.1"
27-
spec.add_runtime_dependency "oj", "~> 3.11", ">= 3.11"
28-
spec.add_runtime_dependency "connection_pool", "~> 2.2.5", ">= 2.2"
26+
spec.add_runtime_dependency "http", ">= 4.4.1", "< 6.0"
27+
spec.add_runtime_dependency "oj", "~> 3.0", "< 4.0"
28+
spec.add_runtime_dependency "connection_pool", ">= 2.2", "< 3.0"
2929
end

lib/block_io/chainparams/LTC.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
--- !ruby/object:Bitcoin::ChainParams
22
network: "LTC"
33
address_version: "30"
4-
p2sh_version: "05"
4+
p2sh_version: "50"
55
bech32_hrp: 'ltc'
66
privkey_version: "b0"
77
extended_privkey_version: "019d9cfe"

lib/block_io/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module BlockIo
2-
VERSION = "3.0.1"
2+
VERSION = "3.0.2"
33
end

0 commit comments

Comments
 (0)