SPDX-License-Identifier: GPL-3.0-or-later
-->
+## v0.9.0
+
+### Notable Changes
+
+#### Ledger connection configuration
+
+Ledger hardware wallets can connect over HID or USB transport protocols; the
+former is generally recommended by the company themselves, especially now
+that a Web USB bug is preventing devices from communicating over the latter.
+`libnemo` now supports configuring the transport directly. By default, it will
+use, in order of preference, HID then Bluetooth then USB, and now, calling the
+`wallet.config()` method with a settings object can set the desired transport
+explicitly. For example:
+
+```
+const myLedger = await Wallet.create('Ledger')
+await myLedger.config({ connection: 'ble' }) // other options are 'hid' or 'usb'
+```
+
+### Other Changes
+
+Build process file hierarchy reorganized.
+
+Fixed test of verify method for Ledger wallets.
+
+Fixed missing constants when building unminified bundle.
+
+Fixed test not cleaning up wallet workers properly.
+
+
+
## v0.8.1
### Notable Changes