From 3473819dd321d723a3ed301a180c4b73126091c7 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 23 Sep 2022 18:40:26 +0000 Subject: [PATCH] 0.6.5 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 ac7c0e6..46c2b68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## 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)) + ## v0.6.4 (2022-09-19) ### Fix * Round to int to avoid wobble ([#11](https://github.com/Bluetooth-Devices/ibeacon-ble/issues/11)) ([`f87c150`](https://github.com/Bluetooth-Devices/ibeacon-ble/commit/f87c15078c5d03bb0ce9f336e59dd5f0ec1ff93d)) diff --git a/pyproject.toml b/pyproject.toml index d5eeb15..a7742e8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ibeacon-ble" -version = "0.6.4" +version = "0.6.5" 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 1ac1344..7ff59cb 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.4" +__version__ = "0.6.5" __all__ = [ "parse",