From 400f917276d52066eae684e19fe04c76aad231e5 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 23 Sep 2022 20:13:38 +0000 Subject: [PATCH] 0.7.0 Automatically generated by python-semantic-release --- CHANGELOG.md | 4 ++++ pyproject.toml | 2 +- src/ibeacon_ble/__init__.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 46c2b68..8375240 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.7.0 (2022-09-23) +### Feature +* Add update_distance method ([#13](https://github.com/Bluetooth-Devices/ibeacon-ble/issues/13)) ([`56edbb5`](https://github.com/Bluetooth-Devices/ibeacon-ble/commit/56edbb50569406fc5bf609acb0b8b01bf430ad58)) + ## v0.6.5 (2022-09-23) ### Fix * Clamp distance to max theoretical value ([#12](https://github.com/Bluetooth-Devices/ibeacon-ble/issues/12)) ([`ae71fbd`](https://github.com/Bluetooth-Devices/ibeacon-ble/commit/ae71fbdebba18f0fbaf1dcdf6db135eb6e86edc2)) diff --git a/pyproject.toml b/pyproject.toml index a7742e8..365146e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ibeacon-ble" -version = "0.6.5" +version = "0.7.0" description = "Parser for iBeacon devices" authors = ["J. Nick Koston "] license = "MIT" diff --git a/src/ibeacon_ble/__init__.py b/src/ibeacon_ble/__init__.py index 4b1a72d..92b2e7f 100644 --- a/src/ibeacon_ble/__init__.py +++ b/src/ibeacon_ble/__init__.py @@ -15,7 +15,7 @@ IBEACON_FIRST_BYTE = 0x02 IBEACON_SECOND_BYTE = 0x15 -__version__ = "0.6.5" +__version__ = "0.7.0" __all__ = [ "parse",