Browse Source

update versions to 0.3.3

master
Adam Gibson 8 years ago
parent
commit
bf9685e8e8
No known key found for this signature in database
GPG Key ID: B3AE09F1E9A3197A
  1. 2
      docs/INSTALL.md
  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
docs/INSTALL.md

@ -94,7 +94,7 @@ At this point you should see `(jmvenv)` at the beginning of your command prompt.
git clone https://github.com/Joinmarket-Org/joinmarket-clientserver
cd joinmarket-clientserver
git checkout v0.3.2
git checkout v0.3.3
5b Non-segwit

2
jmbase/setup.py

@ -2,7 +2,7 @@ from setuptools import setup
setup(name='joinmarketbase',
version='0.3.2',
version='0.3.3',
description='Joinmarket client library for Bitcoin coinjoins',
url='http://github.com/AdamISZ/joinmarket-clientserver/jmbase',
author='Adam Gibson',

2
jmbitcoin/setup.py

@ -2,7 +2,7 @@ from setuptools import setup
setup(name='joinmarketbitcoin',
version='0.3.2',
version='0.3.3',
description='Joinmarket client library for Bitcoin coinjoins',
url='http://github.com/AdamISZ/joinmarket-clientserver/jmbitcoin',
author='Adam Gibson',

4
jmclient/setup.py

@ -2,12 +2,12 @@ from setuptools import setup
setup(name='joinmarketclient',
version='0.3.2',
version='0.3.3',
description='Joinmarket client library for Bitcoin coinjoins',
url='http://github.com/AdamISZ/joinmarket-clientserver/jmclient',
author='Adam Gibson',
author_email='ekaggata@gmail.com',
license='GPL',
packages=['jmclient'],
install_requires=['joinmarketbase==0.3.2', 'mnemonic', 'qt4reactor'],
install_requires=['joinmarketbase==0.3.3', 'mnemonic', 'qt4reactor'],
zip_safe=False)

4
jmdaemon/setup.py

@ -2,12 +2,12 @@ from setuptools import setup
setup(name='joinmarketdaemon',
version='0.3.2',
version='0.3.3',
description='Joinmarket client library for Bitcoin coinjoins',
url='http://github.com/AdamISZ/joinmarket-clientserver/jmdaemon',
author='Adam Gibson',
author_email='ekaggata@gmail.com',
license='GPL',
packages=['jmdaemon'],
install_requires=['txsocksx', 'pyopenssl', 'libnacl', 'joinmarketbase==0.3.2'],
install_requires=['txsocksx', 'pyopenssl', 'libnacl', 'joinmarketbase==0.3.3'],
zip_safe=False)

2
scripts/joinmarket-qt.py

@ -48,7 +48,7 @@ pyqt4reactor.install()
donation_address = "1AZgQZWYRteh6UyF87hwuvyWj73NvWKpL"
#Underlying joinmarket code version (as per setup.py etc.)
JM_CORE_VERSION = '0.3.2'
JM_CORE_VERSION = '0.3.3'
#Version of this Qt script specifically
JM_GUI_VERSION = '7'

Loading…
Cancel
Save