Browse Source

update docs and versions for 0.3.5

master
AdamISZ 7 years ago
parent
commit
a2d2616fd9
No known key found for this signature in database
GPG Key ID: B3AE09F1E9A3197A
  1. 44
      docs/release-notes/release-notes-0.3.5.md
  2. 8
      jmbase/setup.py
  3. 8
      jmbitcoin/setup.py
  4. 10
      jmclient/setup.py
  5. 10
      jmdaemon/setup.py
  6. 2
      scripts/joinmarket-qt.py

44
docs/release-notes/release-notes-0.3.5.md

@ -0,0 +1,44 @@
Joinmarket-clientserver 0.3.5:
=================
<https://github.com/joinmarket-org/joinmarket-clientserver/releases/tag/v0.3.5>
This is a very minor bugfix release, necessary because bugs in the previous release led to crashes in certain edge cases;
the most important one(s) being crashes that made the tumbler prematurely stop when it needed to try a join again.
It is not security-critical however (those bugs were functional failures but had no security implication).
If you have not updated for some time, be sure to read the previous release notes for what has changed.
Please report bugs using the issue tracker at github:
<https://github.com/joinmarket-org/joinmarket-clientserver/issues>
Upgrading
=========
To upgrade: run the `install.sh` script as mentioned in the README. When prompted to overwrite the directory `jmvenv`, accept.
Notable changes
===============
As noted above, there is only one (set of) significant changes; as usual, changes with the testing setup are
not included/out of scope.
### Fix bugs in restart-with-subset
`f1e3476a64cadc0bf9fe9f3c90ff97fd7bb7d5ca` `4a15cbd3c7c16a7377cc475330484f8a2a1bf48f`
Explained above.
Credits
=======
Thanks to everyone who directly contributed to this release -
- @fivepiece
- @AdamISZ
And thanks also to those who submitted bug reports, tested and otherwise helped out.

8
jmbase/setup.py

@ -2,11 +2,11 @@ from setuptools import setup
setup(name='joinmarketbase',
version='0.3.4',
version='0.3.5',
description='Joinmarket client library for Bitcoin coinjoins',
url='http://github.com/AdamISZ/joinmarket-clientserver/jmbase',
author='Adam Gibson',
author_email='ekaggata@gmail.com',
url='http://github.com/Joinmarket-Org/joinmarket-clientserver/jmbase',
author='',
author_email='',
license='GPL',
packages=['jmbase'],
install_requires=['twisted==16.6.0', 'service-identity'],

8
jmbitcoin/setup.py

@ -2,11 +2,11 @@ from setuptools import setup
setup(name='joinmarketbitcoin',
version='0.3.4',
version='0.3.5',
description='Joinmarket client library for Bitcoin coinjoins',
url='http://github.com/AdamISZ/joinmarket-clientserver/jmbitcoin',
author='Adam Gibson',
author_email='ekaggata@gmail.com',
url='http://github.com/Joinmarket-Org/joinmarket-clientserver/jmbitcoin',
author='',
author_email='',
license='GPL',
packages=['jmbitcoin'],
install_requires=['secp256k1',],

10
jmclient/setup.py

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

10
jmdaemon/setup.py

@ -2,12 +2,12 @@ from setuptools import setup
setup(name='joinmarketdaemon',
version='0.3.4',
version='0.3.5',
description='Joinmarket client library for Bitcoin coinjoins',
url='http://github.com/AdamISZ/joinmarket-clientserver/jmdaemon',
author='Adam Gibson',
author_email='ekaggata@gmail.com',
url='http://github.com/Joinmarket-Org/joinmarket-clientserver/jmdaemon',
author='',
author_email='',
license='GPL',
packages=['jmdaemon'],
install_requires=['txsocksx', 'pyopenssl', 'libnacl', 'joinmarketbase==0.3.4'],
install_requires=['txsocksx', 'pyopenssl', 'libnacl', 'joinmarketbase==0.3.5'],
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.4'
JM_CORE_VERSION = '0.3.5'
#Version of this Qt script specifically
JM_GUI_VERSION = '7'

Loading…
Cancel
Save