Skip to content

Commit

Permalink
version 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AustEcon committed Feb 15, 2020
1 parent b5f2942 commit 486f906
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 24 deletions.
10 changes: 9 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,15 @@ Release History

Unreleased (see `master <https://github.com/AustEcon/bitsv>`_)
--------------------------------------------------------------
- No new changes since 0.10.2 yet.
- No new changes since 0.11.0 yet.

0.11.0 (2019-02-15)
-------------------
- Added WhatsOnChain API for mainnet and testnet (MatterCloud is now a paid-only service)
- Unspent data type: removed 'script' (scriptpubkey) attribute (unavailable from main WhatsOnChain and Satoshi.io APIs and is not even used for anything in the codebase at present)
- 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 will make it the highest priority API in the list.
- Renamed BitIndex3 to MatterCloud

0.10.4 (2019-02-13)
-------------------
Expand Down
32 changes: 10 additions & 22 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,17 @@ Forked from Ofek's awesome Bit library: https://github.com/ofek/bit

Noticeboard:
------------
Latest Major Release - 0.11.0_ (2019-02-15)

Latest Major Release - 0.10.4_ (2019-02-13)
.. _0.11.0: 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.


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

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

Expand All @@ -36,27 +45,6 @@ Latest Major Release - 0.10.4_ (2019-02-13)
- 0.10.3 allow transaction fee less than 1 sat/byte (i.e. float) c/o `gitzhou <https://github.com/gitzhou>`_
- 0.10.4 update main api url from https://api.bitindex.network to https://api.mattercloud.net

Previous Major Release - 0.9.0_ (2019-08-11)

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

- Bitcoin Cash addressees are no longer supported.
- Added bchsvexplorer for redundancy on mainnet.
- PrivateKey.get_transaction() now returns a Transaction object with TxInput and TxOutput objects within it.
- Metadata is represented in TxOutput.data as a list of pushdata fields.

- Also big changes_ in 0.8.0 so please take note.

.. _changes: https://github.com/AustEcon/bitsv/blob/master/HISTORY.rst

- "cashaddress" is a great tool for address conversions if ever needed. https://github.com/oskyk/cashaddress/

Default Fee = 1 sat/byte:

- The capacity of the Bitcoin SV network is such that 1 sat/byte virtually guarantees that
your transaction will be included in the next block. This is therefore the default. However, it is
trivial to specify a higher transaction fee by including this as an additional parameter to any
of the transaction related functions.

Planned improvements
--------------------
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.10.4'
__version__ = '0.11.0'

0 comments on commit 486f906

Please sign in to comment.