btcruby 1.1.2 → 1.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e26eccf4e25b07bfb7c0a20d4757c73112ef36ac
4
- data.tar.gz: 44f3ca44eb7f7c36e666a7a0987055c5a16efeb7
3
+ metadata.gz: 96ac30298d4c5f04b49b6874d4a0f2f1e3548f4c
4
+ data.tar.gz: 31c8e3bbb67643b86c70336d30638a1c1172b5d1
5
5
  SHA512:
6
- metadata.gz: 6c891533a5c79e2091f095ae8a9c103cf326cb5d6f532e62497dfc677e887ddf3b718cee7fc16f5b86c53b45b7f9a08320942b088cb55d92ec246aadf84c0f7b
7
- data.tar.gz: 8c0dda6751152a16cf585c5472e5f9bb6ee0c0f2bca7fc64ff3e204ea85b9a93924c2d70e88ed70c20e04f36dfec04bc4032633c4ba0c99854fb6fee56c4b823
6
+ metadata.gz: 23d001c7a98c869e3c082181f5ed06321ff95dc1ae3e03647d6df60dc0abd58cfdaeb9ca16ac3dd65363c17339de52ccdb671461fc87fb130a55c4da5947a7d8
7
+ data.tar.gz: d89027d38e01c7414888d5c30bf55932b54f58ab1772f0211276d7be1816ed1374cbedde5c25fd9a94904dc74dc97d04d50177922053977136f5dae9097aa773
data/RELEASE_NOTES.md CHANGED
@@ -2,14 +2,21 @@
2
2
  BTCRuby Release Notes
3
3
  =====================
4
4
 
5
+ 1.1.3 (August 17, 2015)
6
+ -----------------------
7
+
8
+ * Minor fix.
9
+
10
+
5
11
  1.1.2 (August 17, 2015)
6
- ---------------------
12
+ -----------------------
7
13
 
8
14
  * Added scripts test suite from Bitcoin Core.
9
15
  * Added transactions test suite from Bitcoin Core.
10
16
  * As a result, fixed a few consensus bugs.
11
17
  * Renamed `TransactionOutpoint` to `Outpoint` (previous name kept for backwards compatibility).
12
18
 
19
+
13
20
  1.1.1 (July 30, 2015)
14
21
  ---------------------
15
22
 
@@ -126,7 +126,6 @@ module BTC
126
126
  when SCRIPT_ERR_PUBKEYTYPE
127
127
  return "Public key is neither compressed or uncompressed"
128
128
  when SCRIPT_ERR_UNKNOWN_ERROR
129
- when SCRIPT_ERR_ERROR_COUNT
130
129
  end
131
130
  "unknown error"
132
131
  end
@@ -1,3 +1,3 @@
1
1
  module BTC
2
- VERSION = "1.1.2".freeze
2
+ VERSION = "1.1.3".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: btcruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.2
4
+ version: 1.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Oleg Andreev