Skip to content

Commit 486f906

Browse files
committed
version 0.11.0
1 parent b5f2942 commit 486f906

File tree

3 files changed

+20
-24
lines changed

3 files changed

+20
-24
lines changed

HISTORY.rst

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,15 @@ Release History
33

44
Unreleased (see `master <https://github.com/AustEcon/bitsv>`_)
55
--------------------------------------------------------------
6-
- No new changes since 0.10.2 yet.
6+
- No new changes since 0.11.0 yet.
7+
8+
0.11.0 (2019-02-15)
9+
-------------------
10+
- Added WhatsOnChain API for mainnet and testnet (MatterCloud is now a paid-only service)
11+
- 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)
12+
- 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).
13+
- MatterCloud now activated via **'MATTERCLOUD_API_KEY' environment variable** which will make it the highest priority API in the list.
14+
- Renamed BitIndex3 to MatterCloud
715

816
0.10.4 (2019-02-13)
917
-------------------

README.rst

Lines changed: 10 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,17 @@ 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)
2425

25-
Latest Major Release - 0.10.4_ (2019-02-13)
26+
.. _0.11.0: https://github.com/AustEcon/bitsv/blob/master/HISTORY.rst
27+
28+
- Added WhatsOnChain API for mainnet and testnet
29+
- Unspent data type: removed 'script' (scriptpubkey) attribute (unavailable from WhatsOnChain and Satoshi.io APIs and is unused in the codebase).
30+
- 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).
31+
- 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+
33+
34+
Previous Major Release - 0.10.4_ (2019-02-13)
2635

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

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

39-
Previous Major Release - 0.9.0_ (2019-08-11)
40-
41-
.. _0.9.0: https://github.com/AustEcon/bitsv/blob/master/HISTORY.rst
42-
43-
- Bitcoin Cash addressees are no longer supported.
44-
- Added bchsvexplorer for redundancy on mainnet.
45-
- PrivateKey.get_transaction() now returns a Transaction object with TxInput and TxOutput objects within it.
46-
- Metadata is represented in TxOutput.data as a list of pushdata fields.
47-
48-
- Also big changes_ in 0.8.0 so please take note.
49-
50-
.. _changes: https://github.com/AustEcon/bitsv/blob/master/HISTORY.rst
51-
52-
- "cashaddress" is a great tool for address conversions if ever needed. https://github.com/oskyk/cashaddress/
53-
54-
Default Fee = 1 sat/byte:
55-
56-
- The capacity of the Bitcoin SV network is such that 1 sat/byte virtually guarantees that
57-
your transaction will be included in the next block. This is therefore the default. However, it is
58-
trivial to specify a higher transaction fee by including this as an additional parameter to any
59-
of the transaction related functions.
6048

6149
Planned improvements
6250
--------------------

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.10.4'
6+
__version__ = '0.11.0'

0 commit comments

Comments
 (0)