Browse Source

Merge #620: Update version to 0.7.0dev

b289e39 Update version to 0.7.0dev (Adam Gibson)
master
Adam Gibson 6 years ago
parent
commit
c68acab066
No known key found for this signature in database
GPG Key ID: 141001A1AF77F20B
  1. 2
      jmbase/jmbase/support.py
  2. 2
      jmbase/setup.py
  3. 2
      jmbitcoin/setup.py
  4. 4
      jmclient/setup.py
  5. 4
      jmdaemon/setup.py
  6. 2
      scripts/joinmarket-qt.py

2
jmbase/jmbase/support.py

@ -4,7 +4,7 @@ from getpass import getpass
from os import path, environ from os import path, environ
# JoinMarket version # JoinMarket version
JM_CORE_VERSION = '0.6.3.1' JM_CORE_VERSION = '0.7.0dev'
# global Joinmarket constants # global Joinmarket constants
JM_WALLET_NAME_PREFIX = "joinmarket-wallet-" JM_WALLET_NAME_PREFIX = "joinmarket-wallet-"

2
jmbase/setup.py

@ -2,7 +2,7 @@ from setuptools import setup
setup(name='joinmarketbase', setup(name='joinmarketbase',
version='0.6.3.1', version='0.7.0dev',
description='Joinmarket client library for Bitcoin coinjoins', description='Joinmarket client library for Bitcoin coinjoins',
url='http://github.com/Joinmarket-Org/joinmarket-clientserver/jmbase', url='http://github.com/Joinmarket-Org/joinmarket-clientserver/jmbase',
author='', author='',

2
jmbitcoin/setup.py

@ -2,7 +2,7 @@ from setuptools import setup
setup(name='joinmarketbitcoin', setup(name='joinmarketbitcoin',
version='0.6.3.1', version='0.7.0dev',
description='Joinmarket client library for Bitcoin coinjoins', description='Joinmarket client library for Bitcoin coinjoins',
url='http://github.com/Joinmarket-Org/joinmarket-clientserver/jmbitcoin', url='http://github.com/Joinmarket-Org/joinmarket-clientserver/jmbitcoin',
author='', author='',

4
jmclient/setup.py

@ -2,7 +2,7 @@ from setuptools import setup
setup(name='joinmarketclient', setup(name='joinmarketclient',
version='0.6.3.1', version='0.7.0dev',
description='Joinmarket client library for Bitcoin coinjoins', description='Joinmarket client library for Bitcoin coinjoins',
url='http://github.com/Joinmarket-Org/joinmarket-clientserver/jmclient', url='http://github.com/Joinmarket-Org/joinmarket-clientserver/jmclient',
author='', author='',
@ -10,7 +10,7 @@ setup(name='joinmarketclient',
license='GPL', license='GPL',
packages=['jmclient'], packages=['jmclient'],
install_requires=['future', 'configparser;python_version<"3.2"', 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'], 'bencoder.pyx>=2.0.0', 'pyaes'],
python_requires='>=3.3', python_requires='>=3.3',
zip_safe=False) zip_safe=False)

4
jmdaemon/setup.py

@ -2,13 +2,13 @@ from setuptools import setup
setup(name='joinmarketdaemon', setup(name='joinmarketdaemon',
version='0.6.3.1', version='0.7.0dev',
description='Joinmarket client library for Bitcoin coinjoins', description='Joinmarket client library for Bitcoin coinjoins',
url='http://github.com/Joinmarket-Org/joinmarket-clientserver/jmdaemon', url='http://github.com/Joinmarket-Org/joinmarket-clientserver/jmdaemon',
author='', author='',
author_email='', author_email='',
license='GPL', license='GPL',
packages=['jmdaemon'], 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', python_requires='>=3.3',
zip_safe=False) zip_safe=False)

2
scripts/joinmarket-qt.py

@ -61,7 +61,7 @@ donation_address_sw = "bc1q5x02zqj5nshw0yhx2s4tj75z6vkvuvww26jak5"
donation_address_url = "https://bitcoinprivacy.me/joinmarket-donations" donation_address_url = "https://bitcoinprivacy.me/joinmarket-donations"
#Version of this Qt script specifically #Version of this Qt script specifically
JM_GUI_VERSION = '14' JM_GUI_VERSION = '15dev'
from jmbase import get_log from jmbase import get_log
from jmbase.support import DUST_THRESHOLD, EXIT_FAILURE, JM_CORE_VERSION from jmbase.support import DUST_THRESHOLD, EXIT_FAILURE, JM_CORE_VERSION

Loading…
Cancel
Save