diff --git a/CHANGELOG.md b/CHANGELOG.md index 09b94c6..f9bab48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ +## v0.4.4 (2023-12-16) + +### Fix + +* fix: remove unused workflows (#15) ([`21946e5`](https://github.com/Bluetooth-Devices/usb-devices/commit/21946e5c9077bc32c943550e80c188f58a3c91d3)) + + ## v0.4.3 (2023-12-16) ### Fix diff --git a/pyproject.toml b/pyproject.toml index 2e7930f..1a2ae4f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "usb-devices" -version = "0.4.3" +version = "0.4.4" 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 23bf3fd..8479770 100644 --- a/src/usb_devices/__init__.py +++ b/src/usb_devices/__init__.py @@ -1,6 +1,6 @@ from __future__ import annotations -__version__ = "0.4.3" +__version__ = "0.4.4" import asyncio