Skip to content

Commit d1b1f48

Browse files
committed
version 0.11.3
1 parent 1be9e8b commit d1b1f48

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

HISTORY.rst

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

8+
0.11.3 (2020-11-7)
9+
------------------
10+
- make 'prepare_transaction' a @classmethod as it should not require a private key (breaking change as function signature now requires the 'network' as a positional argument)
811

912
0.11.2 (2020-10-11)
1013
-------------------

README.rst

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

2222
Noticeboard:
2323
------------
24-
Latest Major Release - 0.11.2_ (2020-10-11)
24+
Latest Major Release - 0.11.3_ (2020-11-7)
2525

26-
.. _0.11.2: https://github.com/AustEcon/bitsv/blob/master/HISTORY.rst
26+
.. _0.11.3: 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.
3232
- 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>`_.
3333
- 0.11.2 NetworkAPI.broadcast_tx() now returns the txid instead of null.
34+
- 0.11.3 make 'prepare_transaction' a @classmethod as it should not require a private key (breaking change as function signature now requires the 'network' as a positional argument)
3435

3536
Previous Major Release - 0.10.4_ (2019-02-13)
3637

@@ -108,7 +109,7 @@ This sets memo.sv name (linked to this bitcoin address) to "New_Name" (as per ht
108109
rpcpassword='password',
109110
network='regtest')
110111
111-
note: wallet features of the node software will soon be deprecated. However, possible use cases may include
112+
Possible use cases may include:
112113

113114
- Rapid transaction broadcasting ~ 200tx/sec):
114115
- Regtesting of app in AzurePipelines or Travis CI for example.

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.2'
6+
__version__ = '0.11.3'

0 commit comments

Comments
 (0)