diff --git a/CHANGELOG.md b/CHANGELOG.md index e150fd8..787a698 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ +## v1.0.0 (2022-10-22) +### Feature +* Provide vendor information and label transient devices ([#19](https://github.com/Bluetooth-Devices/ibeacon-ble/issues/19)) ([`f035c9d`](https://github.com/Bluetooth-Devices/ibeacon-ble/commit/f035c9d00618e95fc23d1d50f376b476437d153c)) + +### Breaking +* The parser is now a bound method as `iBeaconParser.parse` which requires `async_setup` to be called before using it. ([`f035c9d`](https://github.com/Bluetooth-Devices/ibeacon-ble/commit/f035c9d00618e95fc23d1d50f376b476437d153c)) + ## v0.7.4 (2022-10-12) ### Fix * Ignore random transient ibeacons ([#17](https://github.com/Bluetooth-Devices/ibeacon-ble/issues/17)) ([`099f011`](https://github.com/Bluetooth-Devices/ibeacon-ble/commit/099f01186e5dbfaf827cd999ddd609c4fc341bff)) diff --git a/pyproject.toml b/pyproject.toml index 39034e3..9f25a23 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ibeacon-ble" -version = "0.7.4" +version = "1.0.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 3a4fe32..8397439 100644 --- a/src/ibeacon_ble/__init__.py +++ b/src/ibeacon_ble/__init__.py @@ -19,7 +19,7 @@ IBEACON_FIRST_BYTE = 0x02 IBEACON_SECOND_BYTE = 0x15 -__version__ = "0.7.4" +__version__ = "1.0.0" __all__ = [ "parse",