====================
- Add ``FF_*`` and ``FF_STATUS`` codes to :func:`ecodes` (thanks `bgilbert`_).
- Reverse event code mappings (``ecodes.{KEY,FF,REL,ABS}`` and etc.)
will now map to a list of codes, whenever a value corresponds to
multiple codes::
>>> ecodes.KEY[152]
... ['KEY_COFFEE', 'KEY_SCREENLOCK']
>>> ecodes.KEY[30]
... 'KEY_A'
- Set the state of a LED through :func:`InputDevice.set_led()` (thanks
`accek`_).
- Open :attr:`InputDevice.fd` in ``O_RDWR`` mode from now on.
- Fix segfault in :func:`InputDevice.device_read_many()` (thanks `bgilbert`_).