diff --git a/CHANGELOG.md b/CHANGELOG.md index 0873aa9..e28fb6f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,34 +1,71 @@ -# Changelog +# CHANGELOG + + + +## v0.4.2 (2023-12-16) + +### Fix + +* fix: ensure lib can be imported in windows (#10) ([`27435cb`](https://github.com/Bluetooth-Devices/usb-devices/commit/27435cb24f4c106cc6f9102f20207f0e2887250f)) - ## v0.4.1 (2022-11-27) + ### Fix -* Handle manufacturer and product files missing ([#9](https://github.com/Bluetooth-Devices/usb-devices/issues/9)) ([`9c98038`](https://github.com/Bluetooth-Devices/usb-devices/commit/9c9803833448aa29d97427d3296d327d15510c2e)) + +* fix: handle manufacturer and product files missing (#9) ([`9c98038`](https://github.com/Bluetooth-Devices/usb-devices/commit/9c9803833448aa29d97427d3296d327d15510c2e)) + ## v0.4.0 (2022-11-27) + ### Feature -* Add not usb error ([#8](https://github.com/Bluetooth-Devices/usb-devices/issues/8)) ([`d778dc4`](https://github.com/Bluetooth-Devices/usb-devices/commit/d778dc481a5c77aaa316f9682296a5265cd9d1f5)) + +* feat: add not usb error (#8) ([`d778dc4`](https://github.com/Bluetooth-Devices/usb-devices/commit/d778dc481a5c77aaa316f9682296a5265cd9d1f5)) + ## v0.3.0 (2022-11-27) + ### Feature -* Add example to readme ([`17015a8`](https://github.com/Bluetooth-Devices/usb-devices/commit/17015a877e0474b5ed9e5e95b91db909c736948b)) + +* feat: Add example to readme ([`17015a8`](https://github.com/Bluetooth-Devices/usb-devices/commit/17015a877e0474b5ed9e5e95b91db909c736948b)) ### Fix -* Tidy readme ([#7](https://github.com/Bluetooth-Devices/usb-devices/issues/7)) ([`1e16889`](https://github.com/Bluetooth-Devices/usb-devices/commit/1e1688992add590388d4258a578225b1f4925cf8)) + +* fix: tidy readme (#7) ([`1e16889`](https://github.com/Bluetooth-Devices/usb-devices/commit/1e1688992add590388d4258a578225b1f4925cf8)) + +### Unknown + +* Update README.md ([`9055ebe`](https://github.com/Bluetooth-Devices/usb-devices/commit/9055ebea41415eacd993449dc15967eab02ddcea)) + ## v0.2.0 (2022-11-27) + ### Feature -* Add a trivial test ([#6](https://github.com/Bluetooth-Devices/usb-devices/issues/6)) ([`3520480`](https://github.com/Bluetooth-Devices/usb-devices/commit/3520480a1ab2f05051057b8f0258457edc8998ca)) + +* feat: add a trivial test (#6) ([`3520480`](https://github.com/Bluetooth-Devices/usb-devices/commit/3520480a1ab2f05051057b8f0258457edc8998ca)) + ## v0.1.0 (2022-11-27) + ### Feature -* Add first version ([#5](https://github.com/Bluetooth-Devices/usb-devices/issues/5)) ([`e34423e`](https://github.com/Bluetooth-Devices/usb-devices/commit/e34423ece309ce492bee74dff8154835bd0e6378)) + +* feat: add first version (#5) ([`e34423e`](https://github.com/Bluetooth-Devices/usb-devices/commit/e34423ece309ce492bee74dff8154835bd0e6378)) + ## v0.0.3 (2022-11-26) + ### Fix -* Setup release tooling ([#4](https://github.com/Bluetooth-Devices/usb-devices/issues/4)) ([`e2b9039`](https://github.com/Bluetooth-Devices/usb-devices/commit/e2b90393b25f28e7434e3e9567bb642692f91e76)) + +* fix: setup release tooling (#4) ([`e2b9039`](https://github.com/Bluetooth-Devices/usb-devices/commit/e2b90393b25f28e7434e3e9567bb642692f91e76)) + ## v0.0.2 (2022-11-26) + ### Fix -* Test release tooling ([#2](https://github.com/Bluetooth-Devices/usb-devices/issues/2)) ([`f5993c7`](https://github.com/Bluetooth-Devices/usb-devices/commit/f5993c7e1f804d70622fb2ddfddaf4b0ac9cebe5)) + +* fix: test release tooling (#2) ([`f5993c7`](https://github.com/Bluetooth-Devices/usb-devices/commit/f5993c7e1f804d70622fb2ddfddaf4b0ac9cebe5)) + +### Unknown + +* 0.0.1 ([`bb71f58`](https://github.com/Bluetooth-Devices/usb-devices/commit/bb71f589ddd01e4d7be0642d57c367845eee558e)) + diff --git a/pyproject.toml b/pyproject.toml index df27037..3113e8a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "usb-devices" -version = "0.4.1" +version = "0.4.2" description = "Tools for mapping, describing, and resetting USB devices" authors = ["J. Nick Koston "] license = "MIT" diff --git a/src/usb_devices/__init__.py b/src/usb_devices/__init__.py index abe4543..0fea8d2 100644 --- a/src/usb_devices/__init__.py +++ b/src/usb_devices/__init__.py @@ -1,6 +1,6 @@ from __future__ import annotations -__version__ = "0.4.1" +__version__ = "0.4.2" import asyncio