diff --git a/CHANGELOG.md b/CHANGELOG.md index b580497..596da25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.1.1 (2022-08-12) +### Fix +* Release process ([#3](https://github.com/Bluetooth-Devices/bluetooth-data-tools/issues/3)) ([`0a2f45b`](https://github.com/Bluetooth-Devices/bluetooth-data-tools/commit/0a2f45b7cba9fe71f20e2030b7712d13c330072c)) + ## v0.1.0 (2022-08-12) ### Feature * Add short_address ([#2](https://github.com/Bluetooth-Devices/bluetooth-data-tools/issues/2)) ([`f6eade3`](https://github.com/Bluetooth-Devices/bluetooth-data-tools/commit/f6eade36a4dab779d8b17a10971932ffa41f2501)) diff --git a/pyproject.toml b/pyproject.toml index 4cc6db8..b78afdb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bluetooth-data-tools" -version = "0.1.0" +version = "0.1.1" description = "Tools for converting bluetooth data and packets" authors = ["J. Nick Koston "] license = "Apache Software License 2.0" diff --git a/src/bluetooth_data_tools/__init__.py b/src/bluetooth_data_tools/__init__.py index 1bc5730..2086ec4 100644 --- a/src/bluetooth_data_tools/__init__.py +++ b/src/bluetooth_data_tools/__init__.py @@ -1,7 +1,7 @@ """Bluetooth data tools.""" from __future__ import annotations -__version__ = "0.1.0" +__version__ = "0.1.1" from struct import Struct