diff --git a/CHANGELOG.md b/CHANGELOG.md index 88ad2ab..59e428e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.6.2 (2022-09-18) +### Fix +* Handle more garage data ([#9](https://github.com/Bluetooth-Devices/ibeacon-ble/issues/9)) ([`9ee81c7`](https://github.com/Bluetooth-Devices/ibeacon-ble/commit/9ee81c7ffed6dd0877116f95c6f5f9879a453910)) + ## v0.6.1 (2022-09-18) ### Fix * Round distance ([#8](https://github.com/Bluetooth-Devices/ibeacon-ble/issues/8)) ([`4abfe18`](https://github.com/Bluetooth-Devices/ibeacon-ble/commit/4abfe18c7486db36dc061c0955b1e1b82e384fb7)) diff --git a/pyproject.toml b/pyproject.toml index c36f4cf..ea7766f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ibeacon-ble" -version = "0.6.1" +version = "0.6.2" 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 106dff2..6fb5ed4 100644 --- a/src/ibeacon_ble/__init__.py +++ b/src/ibeacon_ble/__init__.py @@ -14,7 +14,7 @@ IBEACON_FIRST_BYTE = 0x02 IBEACON_SECOND_BYTE = 0x15 -__version__ = "0.6.1" +__version__ = "0.6.2" __all__ = [ "parse",