diff --git a/CHANGELOG.md b/CHANGELOG.md index 0badf69..ac97b6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## v0.8.0 (2023-12-06) + +### Feature + +- Auto build the cythonized manager (#15) ([`c3441e5`](https://github.com/Bluetooth-Devices/habluetooth/commit/c3441e5095d62e6e70c2c879c4b5c109a87f463c)) +- Add cython implementation for manager (#14) ([`266a602`](https://github.com/Bluetooth-Devices/habluetooth/commit/266a6022fb433ef9399f72e87b18b86897524784)) + ## v0.7.0 (2023-12-05) ### Feature diff --git a/docs/conf.py b/docs/conf.py index 12413ac..2fada2d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -7,7 +7,7 @@ project = "habluetooth" copyright = "2023, J. Nick Koston" author = "J. Nick Koston" -release = "0.7.0" +release = "0.8.0" # General configuration extensions = [ diff --git a/pyproject.toml b/pyproject.toml index 2089225..994db3f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "habluetooth" -version = "0.7.0" +version = "0.8.0" description = "High availability Bluetooth" authors = ["J. Nick Koston "] license = "Apache Software License 2.0" diff --git a/src/habluetooth/__init__.py b/src/habluetooth/__init__.py index d8a8436..cec8ab8 100644 --- a/src/habluetooth/__init__.py +++ b/src/habluetooth/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.7.0" +__version__ = "0.8.0" from .advertisement_tracker import ( TRACKER_BUFFERING_WOBBLE_SECONDS,