Skip to content

Commit db304cd

Browse files
committed
version 0.11.1
1 parent beed4b9 commit db304cd

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

HISTORY.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ Unreleased (see `master <https://github.com/AustEcon/bitsv>`_)
55
--------------------------------------------------------------
66
- No new changes since 0.11.0 yet.
77

8+
0.11.1 (2020-04-10)
9+
-------------------
10+
- Fixed an off-by-one bug for generating pushdata op_codes for data-carrier 'op_return' txs - c/o `gitzhou <https://github.com/gitzhou>`_.
11+
812
0.11.0 (2019-02-15)
913
-------------------
1014
- Added WhatsOnChain API for mainnet and testnet (MatterCloud is now a paid-only service)

README.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,15 @@ Forked from Ofek's awesome Bit library: https://github.com/ofek/bit
2121

2222
Noticeboard:
2323
------------
24-
Latest Major Release - 0.11.0_ (2019-02-15)
24+
Latest Major Release - 0.11.1_ (2019-04-10)
2525

26-
.. _0.11.0: https://github.com/AustEcon/bitsv/blob/master/HISTORY.rst
26+
.. _0.11.1: https://github.com/AustEcon/bitsv/blob/master/HISTORY.rst
2727

2828
- Added WhatsOnChain API for mainnet and testnet
2929
- Unspent data type: removed 'script' (scriptpubkey) attribute (unavailable from WhatsOnChain and Satoshi.io APIs and is unused in the codebase).
3030
- Transaction, TxOutput, TxInput data types: removed unnecessary 'cruft' like 'amount_in', 'amount_out' and 'fee' (also to facilitate use of WhatsOnChain etc. and reduce maintenance overheads).
3131
- MatterCloud now activated via **'MATTERCLOUD_API_KEY' environment variable** which makes it the highest priority API in the list for main, test, stn. Otherwise WhatsOnChain is used by default.
32+
- 0.11.1 Fixed an off-by-one bug for generating pushdata op_codes for data-carrier 'op_return' txs - c/o `gitzhou <https://github.com/gitzhou>`_.
3233

3334

3435
Previous Major Release - 0.10.4_ (2019-02-13)

bitsv/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
from bitsv.network.services import set_service_timeout, FullNode
44
from bitsv.wallet import Key, PrivateKey, wif_to_key
55

6-
__version__ = '0.11.0'
6+
__version__ = '0.11.1'

0 commit comments

Comments
 (0)