diff --git a/CHANGELOG.md b/CHANGELOG.md index 4beb5c4..fda23b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.2.0 (2022-09-17) +### Feature +* Port the parser ([#3](https://github.com/Bluetooth-Devices/ibeacon-ble/issues/3)) ([`584a501`](https://github.com/Bluetooth-Devices/ibeacon-ble/commit/584a501a733a085a658b7689b4987b7e9e796646)) + ## v0.1.0 (2022-09-17) ### Feature * Init ci ([#1](https://github.com/Bluetooth-Devices/ibeacon-ble/issues/1)) ([`574364e`](https://github.com/Bluetooth-Devices/ibeacon-ble/commit/574364eb471d4fb86a82ef58c278690851996c9a)) diff --git a/pyproject.toml b/pyproject.toml index 1f829ca..7669e17 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ibeacon-ble" -version = "0.1.0" +version = "0.2.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 5d27e87..ee72c7a 100644 --- a/src/ibeacon_ble/__init__.py +++ b/src/ibeacon_ble/__init__.py @@ -11,7 +11,7 @@ IBEACON_MFR_ID = 76 -__version__ = "0.1.0" +__version__ = "0.2.0" __all__ = ["parse", "iBeaconAdvertisement"]