Skip to content

Commit abc0ccb

Browse files
actions-usergithub-actions
authored and
github-actions
committed
1.0.0
Automatically generated by python-semantic-release
1 parent 2be176c commit abc0ccb

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
<!--next-version-placeholder-->
44

5+
## v1.0.0 (2022-10-16)
6+
### Feature
7+
* Update for new bleak version ([#33](https://github.com/Bluetooth-Devices/led-ble/issues/33)) ([`2be176c`](https://github.com/Bluetooth-Devices/led-ble/commit/2be176cfc5492f35bc3fc019e385a3698ea572bb))
8+
9+
### Breaking
10+
* The set_ble_device function has been renamed set_ble_device_and_advertisement_data and now requires the advertisement_data. ([`2be176c`](https://github.com/Bluetooth-Devices/led-ble/commit/2be176cfc5492f35bc3fc019e385a3698ea572bb))
11+
* The constructor no longer takes a retry count since this does not need to be configurable ([`2be176c`](https://github.com/Bluetooth-Devices/led-ble/commit/2be176cfc5492f35bc3fc019e385a3698ea572bb))
12+
513
## v0.10.1 (2022-09-15)
614
### Fix
715
* Handle additional bleak exceptions ([#31](https://github.com/Bluetooth-Devices/led-ble/issues/31)) ([`1ff94f7`](https://github.com/Bluetooth-Devices/led-ble/commit/1ff94f770e86d630892261178018d861d4e74a72))

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "led-ble"
3-
version = "0.10.1"
3+
version = "1.0.0"
44
description = "Control a wide range of LED BLE devices"
55
authors = ["J. Nick Koston <[email protected]>"]
66
license = "Apache Software License 2.0"

src/led_ble/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from __future__ import annotations
22

3-
__version__ = "0.10.1"
3+
__version__ = "1.0.0"
44

55

66
from bleak_retry_connector import get_device

0 commit comments

Comments
 (0)