-----------
*2018-10-21*
**Backward-incompatible changes:**
- Changed the implementation of ``Duration.fromTime`` and removed its ``minimum`` and ``diff`` arguments. Now it raises
a ``ValueError`` if given time cannot be displayed in Guitar Pro.
**Deprecations:**
- Deprecated the usage of ``Duration.isDoubleDotted`` because it's not supported in Guitar Pro 3-5. Setting values
to this attribute will issue a warning. The attribute will be completely removed in the next release.
**Changes:**
- Fixed a bug that causes chord information to be lost `10 <https://github.com/Perlence/PyGuitarPro/pull/10>`_.
- Allowed 13-tuplets to be written.
- Fixed hashing.
- Removed wordy reprs on ``Lyrics``, ``Song``, ``MeasureHeader``, ``TrackRSE``, ``Track``, ``Measure``, ``Voice``,
``Beat``, ``NoteEffect`` instances. To see an object in somewhat human-readable form use the following snippet:
.. code-block:: python
import attr
attr.astuple(track, recurse=False)