Skip to content

Commit 48bed7a

Browse files
committed
Release v0.8.0
1 parent 1b4f678 commit 48bed7a

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

bitcoin/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# Note that setup.py can break if __init__.py imports any external
1717
# dependencies, as these might not be installed when setup.py runs. In this
1818
# case __version__ could be moved to a separate version.py and imported here.
19-
__version__ = '0.8.0-SNAPSHOT'
19+
__version__ = '0.8.0'
2020

2121
class MainParams(bitcoin.core.CoreMainParams):
2222
MESSAGE_START = b'\xf9\xbe\xb4\xd9'

release-notes.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# python-bitcoinlib release notes
22

3-
## v0.8.0-PENDING
3+
## v0.8.0
44

55
Major breaking API change!
66

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
88
does change the name of the `CTransaction/CMutableTransaction` method
99
`GetHash()` to `GetTxid()` to prepare for a future segwit-enabled release.
1010
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
1616
segwit-serialized transactions that this release's RPC support doesn't
1717
understand.
1818

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+
1926

2027
## v0.7.0
2128

0 commit comments

Comments
 (0)