Skip to content

Commit

Permalink
Merge #1090: add release notes and version 0.9.4
Browse files Browse the repository at this point in the history
e3b5a05 add release notes and version 0.9.4 (Adam Gibson)
  • Loading branch information
AdamISZ committed Nov 30, 2021
2 parents 8854f68 + e3b5a05 commit 3140616
Show file tree
Hide file tree
Showing 9 changed files with 95 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/JOINMARKET-QT-GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

The GUI can be run directly from Python script by doing `./joinmarket-qt.sh` from within `scripts/`, or, if using Microsoft Windows, by running the executable file/binary (**[CLICK HERE](https://github.com/JoinMarket-Org/joinmarket-clientserver/releases)** to download the latest release). If you followed normal installation procedure under Linux, desktop entry of JoinMarketQt should be added to the application menu of your desktop environment.

**LATEST VERSION of JoinMarket-Qt is GUI version 25**. You can check the version via `About` in the menu.
**LATEST VERSION of JoinMarket-Qt is GUI version 26**. You can check the version via `About` in the menu.

No other files / setup should be needed.

Expand Down
85 changes: 85 additions & 0 deletions docs/release-notes/release-notes-0.9.4.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
Joinmarket-clientserver 0.9.4:
=================

<https://github.com/joinmarket-org/joinmarket-clientserver/releases/tag/v0.9.4>

Please report bugs using the issue tracker at github:

<https://github.com/joinmarket-org/joinmarket-clientserver/issues>


Upgrading
=========

To upgrade:

*Reminder: always back up and recreate your joinmarket.cfg file when doing the upgrade; this is to make sure you have the new default settings. This particularly matters in releases like 0.9.4, where there are new network/IRC settings.*

(If you are upgrading from a version pre-0.7.0 please read the "Upgrading" section in [the 0.7.0 release notes](https://github.com/JoinMarket-Org/joinmarket-clientserver/blob/master/docs/release-notes/release-notes-0.7.0.md).)

(If you are upgrading from a version pre-0.9.0 please read the [release notes](https://github.com/JoinMarket-Org/joinmarket-clientserver/blob/master/docs/release-notes/release-notes-0.9.0.md) to find out how about [fidelity bonds](../fidelity-bonds.md) are relevant to your use-case).

First run the `install.sh` script as mentioned in the README. When prompted to overwrite the directory `jmvenv`, accept.

Note that `./install.sh -?` will show the options for installation.

Notable changes
===============

### User-chosen address labelling

See [PR](https://github.com/JoinMarket-Org/joinmarket-clientserver/pull/1015). This feature allows users to set a label for an address with the method `setlabel`, like this:

```
python wallet-tool.py mywallet.jmdat setlabel bc1fakeaddress "mynewcustomlabel"
```

where `bc1fakeaddress` should be any address "known" in the wallet (so anything up to 'used + gap limit', if that makes sense to you - if not, don't worry). This includes timelocked addresses. A few points of note:

* This can only be done on the command line, but you can view the labels in Qt. We will probably add the setlabel function to Qt at some point soon.
* These labels are separate to, and additional to, the existing "used/new" field which shows "coinjoin-out", "change-out", "deposit" etc. Those are set algorithmically according to the type of transaction (and should not be 100% relied on, if you do something unusual).
* You can remove an existing label by calling `setlabel` with "".


`21c0e3e` Implement address labeling


### Fix message signature encoding crash vector

See the [PR](https://github.com/JoinMarket-Org/joinmarket-clientserver/pull/1070) for details. This fixes a potential crash vector if the counterparty sends a non-hex-encoded string in place of a pubkey, so for this reason, makers in particular should update immediately.

`0507f6a` Validate message signature encoding


### New IRC server

See changes in the PR [here](https://github.com/JoinMarket-Org/joinmarket-clientserver/pull/1065/files).
You are strongly recommended to recreate your `joinmarket.cfg`, as always, but especially in cases like this: the list of IRC servers has been "cleaned up" somewhat to be more informative, and a fourth server ("Ilita") has been added as an alternative (but off, by default). A reminder that in theory you can run with any number of IRC servers connected. Also see the notes about Tor being the recommended option (which almost all users do use, today).

`af4f071` Add Ilita IRC server (.onion)


### Minor changes

`e7ff25d` Fix example date and example output in fidelity bond doc

`14bed14` Fix @fort-nix's public orderbook links

`840189c` Fix SNICKER daemon startup

`20e2e85` jmbase: upgrade twisted to latest (21.7.0)

`1e25d1f` Allow to not specify rpc_port in config, use network's default then


Credits
=======

Thanks to everyone who directly contributed to this release -

- @nixbitcoin
- @kristapsk
- @AdamISZ
- @xanoni

And thanks also to those who submitted bug reports, reviewed and otherwise helped out.
2 changes: 1 addition & 1 deletion jmbase/jmbase/support.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import urllib.parse as urlparse

# JoinMarket version
JM_CORE_VERSION = '0.9.4dev'
JM_CORE_VERSION = '0.9.4'

# global Joinmarket constants
JM_WALLET_NAME_PREFIX = "joinmarket-wallet-"
Expand Down
2 changes: 1 addition & 1 deletion jmbase/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


setup(name='joinmarketbase',
version='0.9.4dev',
version='0.9.4',
description='Joinmarket client library for Bitcoin coinjoins',
url='https://github.com/JoinMarket-Org/joinmarket-clientserver/tree/master/jmbase',
author='',
Expand Down
2 changes: 1 addition & 1 deletion jmbitcoin/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


setup(name='joinmarketbitcoin',
version='0.9.4dev',
version='0.9.4',
description='Joinmarket client library for Bitcoin coinjoins',
url='https://github.com/JoinMarket-Org/joinmarket-clientserver/tree/master/jmbitcoin',
author='',
Expand Down
4 changes: 2 additions & 2 deletions jmclient/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@


setup(name='joinmarketclient',
version='0.9.4dev',
version='0.9.4',
description='Joinmarket client library for Bitcoin coinjoins',
url='https://github.com/JoinMarket-Org/joinmarket-clientserver/tree/master/jmclient',
author='',
author_email='',
license='GPL',
packages=['jmclient'],
install_requires=['joinmarketbase==0.9.4dev', 'mnemonic', 'argon2_cffi',
install_requires=['joinmarketbase==0.9.4', 'mnemonic', 'argon2_cffi',
'bencoder.pyx>=2.0.0', 'pyaes', 'klein==20.6.0',
'pyjwt==2.1.0', 'autobahn==20.12.3'],
python_requires='>=3.6',
Expand Down
4 changes: 2 additions & 2 deletions jmdaemon/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@


setup(name='joinmarketdaemon',
version='0.9.4dev',
version='0.9.4',
description='Joinmarket client library for Bitcoin coinjoins',
url='https://github.com/JoinMarket-Org/joinmarket-clientserver/tree/master/jmdaemon',
author='',
author_email='',
license='GPL',
packages=['jmdaemon'],
install_requires=['txtorcon', 'cryptography==3.3.2', 'pyopenssl', 'libnacl', 'joinmarketbase==0.9.4dev'],
install_requires=['txtorcon', 'cryptography==3.3.2', 'pyopenssl', 'libnacl', 'joinmarketbase==0.9.4'],
python_requires='>=3.6',
zip_safe=False)
2 changes: 1 addition & 1 deletion jmqtui/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import os

setup(name='joinmarketui',
version='0.9.4dev',
version='0.9.4',
description='Joinmarket client library for Bitcoin coinjoins',
url='https://github.com/JoinMarket-Org/joinmarket-clientserver/tree/master/jmqtui',
author='',
Expand Down
2 changes: 1 addition & 1 deletion scripts/joinmarket-qt.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
donation_address_url = "https://bitcoinprivacy.me/joinmarket-donations"

#Version of this Qt script specifically
JM_GUI_VERSION = '26dev'
JM_GUI_VERSION = '26'

from jmbase import get_log, stop_reactor
from jmbase.support import EXIT_FAILURE, utxo_to_utxostr,\
Expand Down

0 comments on commit 3140616

Please sign in to comment.