Skip to content

Commit 1f708f8

Browse files
committed
Release v0.2.0
1 parent 08b6f6d commit 1f708f8

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

release-notes.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
python-bitcoinlib release notes
2+
===============================
3+
4+
v0.2.0
5+
======
6+
7+
Major change: CTransaction, CBlock, etc. now come in immutable (default) and
8+
mutable forms. In most cases mutable and immutable can be used interchangeably;
9+
when that is not possible methods are provided to create new (im)mutable
10+
objects from (im)mutable ones efficiently.
11+
12+
Other changes:
13+
14+
* New BIP70 payment protocol example. (Derren Desouza)
15+
* Rework of message serialization. Note that this may not represent the final
16+
form of P2P support, which is still in flux. (Florian Schmaus)
17+
* Various bugfixes
18+
19+
Finally starting this release, git tags will be of the form
20+
'python-bitcoinlib-(version)', replacing the less specific '(version)' form
21+
previously used.
22+

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-SNAPSHOT',
13+
version='0.2.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)