Skip to content

Commit c481254

Browse files
committed
Release v0.3.0
1 parent d641c79 commit c481254

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

release-notes.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
python-bitcoinlib release notes
22
===============================
33

4+
v0.3.0
5+
======
6+
7+
Major change: cleaned up what symbols are exported by modules. __all__ is now
8+
used extensively, which may break some applications that were not importing the
9+
right modules. Along those lines some implementation details like the ssl
10+
attribute of the bitcoin.core.key module, and the entire bitcoin.core.bignum
11+
module, are no longer part of the public API. This should not affect too many
12+
users, but it will break some code.
13+
14+
Other notable changes:
15+
16+
* New getreceivedbyaddress RPC call.
17+
* Fixed getbalance RPC call when wallet is configured off.
18+
* Various code cleanups and minor bug fixes.
19+
20+
421
v0.2.1
522
======
623

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
requires = []
1111

1212
setup(name='python-bitcoinlib',
13-
version='0.2.2-SNAPSHOT',
13+
version='0.3.0',
1414
description='This python library provides an easy interface to the Bitcoin data structures and protocol.',
1515
long_description=README,
1616
classifiers=[

0 commit comments

Comments
 (0)