File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 16
16
# Note that setup.py can break if __init__.py imports any external
17
17
# dependencies, as these might not be installed when setup.py runs. In this
18
18
# case __version__ could be moved to a separate version.py and imported here.
19
- __version__ = '0.8.0-SNAPSHOT '
19
+ __version__ = '0.8.0'
20
20
21
21
class MainParams (bitcoin .core .CoreMainParams ):
22
22
MESSAGE_START = b'\xf9 \xbe \xb4 \xd9 '
Original file line number Diff line number Diff line change 1
1
# python-bitcoinlib release notes
2
2
3
- ## v0.8.0-PENDING
3
+ ## v0.8.0
4
4
5
5
Major breaking API change!
6
6
7
- While this interm release changes doesn't by itself include segwit support, it
7
+ While this interim release changes doesn't by itself include segwit support, it
8
8
does change the name of the ` CTransaction/CMutableTransaction ` method
9
9
` GetHash() ` to ` GetTxid() ` to prepare for a future segwit-enabled release.
10
10
Incorrect calls to ` GetHash() ` will now raise a ` AttributeError ` exception with
@@ -16,6 +16,13 @@ or in your `bitcoin.conf` file. Otherwise the RPC interface will return
16
16
segwit-serialized transactions that this release's RPC support doesn't
17
17
understand.
18
18
19
+ Other changes:
20
+
21
+ * Cookie file RPC authentication is now supported.
22
+ * ` msg_header ` now correctly uses ` CBlockHeader ` rather than ` CBlock ` .
23
+ * RPC ` getbalance ` now supports ` include_watchonly `
24
+ * RPC ` unlockwallet ` is now supported
25
+
19
26
20
27
## v0.7.0
21
28
You can’t perform that action at this time.
0 commit comments