Skip to content

Commit

Permalink
version 0.11.3
Browse files Browse the repository at this point in the history
  • Loading branch information
AustEcon committed Nov 7, 2020
1 parent 1be9e8b commit d1b1f48
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
3 changes: 3 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ Unreleased (see `master <https://github.com/AustEcon/bitsv>`_)
--------------------------------------------------------------
- No new changes since 0.11.2 yet.

0.11.3 (2020-11-7)
------------------
- 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)

0.11.2 (2020-10-11)
-------------------
Expand Down
7 changes: 4 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,17 @@ Forked from Ofek's awesome Bit library: https://github.com/ofek/bit

Noticeboard:
------------
Latest Major Release - 0.11.2_ (2020-10-11)
Latest Major Release - 0.11.3_ (2020-11-7)

.. _0.11.2: https://github.com/AustEcon/bitsv/blob/master/HISTORY.rst
.. _0.11.3: https://github.com/AustEcon/bitsv/blob/master/HISTORY.rst

- Added WhatsOnChain API for mainnet and testnet
- Unspent data type: removed 'script' (scriptpubkey) attribute (unavailable from WhatsOnChain and Satoshi.io APIs and is unused in the codebase).
- 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).
- 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.
- 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>`_.
- 0.11.2 NetworkAPI.broadcast_tx() now returns the txid instead of null.
- 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)

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

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

- Rapid transaction broadcasting ~ 200tx/sec):
- Regtesting of app in AzurePipelines or Travis CI for example.
Expand Down
2 changes: 1 addition & 1 deletion bitsv/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
from bitsv.network.services import set_service_timeout, FullNode
from bitsv.wallet import Key, PrivateKey, wif_to_key

__version__ = '0.11.2'
__version__ = '0.11.3'

0 comments on commit d1b1f48

Please sign in to comment.