You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
monero-python/docs/source/release_notes.rst

23 lines
870 B

5 years ago
Release Notes
=============
0.6
---
With version 0.6 the package name on PyPi has changed from `monero-python` to just `monero`.
5 years ago
0.5
---
Backward-incompatible changes:
1. The ``ringsize`` parameter is gone from ``.transfer()`` and ``.transfer_multiple()`` methods of
both ``Wallet`` and ``Account``. Since Monero 0.13 the ring size is of constant value 11.
2. The class hierarchy in ``monero.address`` has been reordered. ``Address`` now represents only
master address of a wallet. ``SubAddress`` doesn't inherit after it anymore, but all classes
share the common base of ``BaseAddress``.
In particular, make sure that your code doesn't check a presence of Monero address by checking
``isinstance(x, monero.address.Address)``. That will not work for sub-addresses anymore.
Replace it by ``isinstance(x, monero.address.BaseAddress)``.