From c30d66a67858f1ab2d7b992396f0b665dbe8d25e Mon Sep 17 00:00:00 2001 From: AustEcon Date: Thu, 13 Feb 2020 22:09:06 +1300 Subject: [PATCH] version 0.10.4 --- HISTORY.rst | 4 ++++ README.rst | 6 ++++-- bitsv/__init__.py | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 9ecb030..8ab7a9c 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -5,6 +5,10 @@ Unreleased (see `master `_) -------------------------------------------------------------- - No new changes since 0.10.2 yet. +0.10.4 (2019-02-13) +------------------- +- Update main api url from https://api.bitindex.network to https://api.mattercloud.net + 0.10.3 (2019-01-31) ------------------- - Allow transaction fee less than 1 sat/byte (i.e. float) c/o `gitzhou `_ diff --git a/README.rst b/README.rst index a2add15..17eac53 100644 --- a/README.rst +++ b/README.rst @@ -22,9 +22,9 @@ Forked from Ofek's awesome Bit library: https://github.com/ofek/bit Noticeboard: ------------ -Latest Major Release - 0.10.2_ (2019-11-28) +Latest Major Release - 0.10.4_ (2019-02-13) -.. _0.10.2: https://github.com/AustEcon/bitsv/blob/master/HISTORY.rst +.. _0.10.4: https://github.com/AustEcon/bitsv/blob/master/HISTORY.rst - Added new Fullnode class for connecting to local bitcoin node via JSON-RPC (thanks goes to https://github.com/xloem for the initial legwork). - Fullnode class works for Mainnet, Testnet, Scaling-testnet and RegTest (local mock blockchain). @@ -33,6 +33,8 @@ Latest Major Release - 0.10.2_ (2019-11-28) - Add 'sweep' function to PrivateKey class for sending all coins to a given address. - 0.10.1 includes a patch for rpc methods list - 0.10.2 includes a patch to fix broken API endpoint for foreign currency conversions. +- 0.10.3 allow transaction fee less than 1 sat/byte (i.e. float) c/o `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) diff --git a/bitsv/__init__.py b/bitsv/__init__.py index fc6847c..6c98f4e 100644 --- a/bitsv/__init__.py +++ b/bitsv/__init__.py @@ -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.3' +__version__ = '0.10.4'