File tree Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change
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
+
Original file line number Diff line number Diff line change 10
10
requires = []
11
11
12
12
setup (name = 'python-bitcoinlib' ,
13
- version = '0.2-SNAPSHOT ' ,
13
+ version = '0.2.0 ' ,
14
14
description = 'This python library provides an easy interface to the bitcoin data structures and protocol.' ,
15
15
long_description = README ,
16
16
classifiers = [
You can’t perform that action at this time.
0 commit comments