From b289e39085818cc3d80b077844d0ef0da720d336 Mon Sep 17 00:00:00 2001 From: Adam Gibson Date: Sat, 4 Jul 2020 12:48:52 +0100 Subject: [PATCH] Update version to 0.7.0dev --- jmbase/jmbase/support.py | 2 +- jmbase/setup.py | 2 +- jmbitcoin/setup.py | 2 +- jmclient/setup.py | 4 ++-- jmdaemon/setup.py | 4 ++-- scripts/joinmarket-qt.py | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/jmbase/jmbase/support.py b/jmbase/jmbase/support.py index 567258b..7175bb5 100644 --- a/jmbase/jmbase/support.py +++ b/jmbase/jmbase/support.py @@ -4,7 +4,7 @@ from getpass import getpass from os import path, environ # JoinMarket version -JM_CORE_VERSION = '0.6.3.1' +JM_CORE_VERSION = '0.7.0dev' # global Joinmarket constants JM_WALLET_NAME_PREFIX = "joinmarket-wallet-" diff --git a/jmbase/setup.py b/jmbase/setup.py index 87edf50..9d99002 100644 --- a/jmbase/setup.py +++ b/jmbase/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup(name='joinmarketbase', - version='0.6.3.1', + version='0.7.0dev', description='Joinmarket client library for Bitcoin coinjoins', url='http://github.com/Joinmarket-Org/joinmarket-clientserver/jmbase', author='', diff --git a/jmbitcoin/setup.py b/jmbitcoin/setup.py index 854b152..5409382 100644 --- a/jmbitcoin/setup.py +++ b/jmbitcoin/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup(name='joinmarketbitcoin', - version='0.6.3.1', + version='0.7.0dev', description='Joinmarket client library for Bitcoin coinjoins', url='http://github.com/Joinmarket-Org/joinmarket-clientserver/jmbitcoin', author='', diff --git a/jmclient/setup.py b/jmclient/setup.py index 8375778..66c480d 100644 --- a/jmclient/setup.py +++ b/jmclient/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup(name='joinmarketclient', - version='0.6.3.1', + version='0.7.0dev', description='Joinmarket client library for Bitcoin coinjoins', url='http://github.com/Joinmarket-Org/joinmarket-clientserver/jmclient', author='', @@ -10,7 +10,7 @@ setup(name='joinmarketclient', license='GPL', packages=['jmclient'], install_requires=['future', 'configparser;python_version<"3.2"', - 'joinmarketbase==0.6.3.1', 'mnemonic', 'argon2_cffi', + 'joinmarketbase==0.7.0dev', 'mnemonic', 'argon2_cffi', 'bencoder.pyx>=2.0.0', 'pyaes'], python_requires='>=3.3', zip_safe=False) diff --git a/jmdaemon/setup.py b/jmdaemon/setup.py index 0d3159b..f93a614 100644 --- a/jmdaemon/setup.py +++ b/jmdaemon/setup.py @@ -2,13 +2,13 @@ from setuptools import setup setup(name='joinmarketdaemon', - version='0.6.3.1', + version='0.7.0dev', description='Joinmarket client library for Bitcoin coinjoins', url='http://github.com/Joinmarket-Org/joinmarket-clientserver/jmdaemon', author='', author_email='', license='GPL', packages=['jmdaemon'], - install_requires=['future', 'txtorcon', 'pyopenssl', 'libnacl', 'joinmarketbase==0.6.3.1'], + install_requires=['future', 'txtorcon', 'pyopenssl', 'libnacl', 'joinmarketbase==0.7.0dev'], python_requires='>=3.3', zip_safe=False) diff --git a/scripts/joinmarket-qt.py b/scripts/joinmarket-qt.py index 7151f8f..d10bdc8 100755 --- a/scripts/joinmarket-qt.py +++ b/scripts/joinmarket-qt.py @@ -61,7 +61,7 @@ donation_address_sw = "bc1q5x02zqj5nshw0yhx2s4tj75z6vkvuvww26jak5" donation_address_url = "https://bitcoinprivacy.me/joinmarket-donations" #Version of this Qt script specifically -JM_GUI_VERSION = '14' +JM_GUI_VERSION = '15dev' from jmbase import get_log from jmbase.support import DUST_THRESHOLD, EXIT_FAILURE, JM_CORE_VERSION