From d55755ae9e090807ac70c89e7a6684b97a405932 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 1 Dec 2023 04:26:11 +0000 Subject: [PATCH] 1.16.0 Automatically generated by python-semantic-release --- CHANGELOG.md | 6 ++++++ pyproject.toml | 2 +- src/bluetooth_data_tools/__init__.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 979c368..a361ae1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v1.16.0 (2023-12-01) + +### Feature + +* Add cython monotonic_time_coarse implementation ([#38](https://github.com/Bluetooth-Devices/bluetooth-data-tools/issues/38)) ([`ae3abb8`](https://github.com/Bluetooth-Devices/bluetooth-data-tools/commit/ae3abb88023a998be5e4b75b32f0882ebb18dfd9)) + ## v1.15.0 (2023-11-24) ### Feature diff --git a/pyproject.toml b/pyproject.toml index 7f55079..4c81a2a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bluetooth-data-tools" -version = "1.15.0" +version = "1.16.0" 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 a6c57f3..2626a04 100644 --- a/src/bluetooth_data_tools/__init__.py +++ b/src/bluetooth_data_tools/__init__.py @@ -14,7 +14,7 @@ from .time import monotonic_time_coarse from .utils import int_to_bluetooth_address -__version__ = "1.15.0" +__version__ = "1.16.0" L_PACK = Struct(">L")