@@ -474,7 +474,7 @@ class BleakClient:
474474 No longer is alias for backend type and no longer inherits from :class:`BaseBleakClient`.
475475 Added ``backend`` parameter.
476476
477- .. versionchanged:: unreleased
477+ .. versionchanged:: 1.0
478478 Added ``pair`` parameter.
479479 """
480480
@@ -560,15 +560,15 @@ async def connect(self, **kwargs: Any) -> None:
560560 Args:
561561 **kwargs: For backwards compatibility - should not be used.
562562
563- .. versionchanged:: unreleased
563+ .. versionchanged:: 1.0
564564 No longer returns ``True``. Instead, the return type is ``None``.
565565 """
566566 await self ._backend .connect (self ._pair_before_connect , ** kwargs )
567567
568568 async def disconnect (self ) -> None :
569569 """Disconnect from the specified GATT server.
570570
571- .. versionchanged:: unreleased
571+ .. versionchanged:: 1.0
572572 No longer returns ``True``. Instead, the return type is ``None``.
573573 """
574574 await self ._backend .disconnect ()
@@ -582,7 +582,7 @@ async def pair(self, *args: Any, **kwargs: Any) -> None:
582582 that a characteristic that requires authentication is read or written.
583583 This method may have backend-specific additional keyword arguments.
584584
585- .. versionchanged:: unreleased
585+ .. versionchanged:: 1.0
586586 No longer returns ``True``. Instead, the return type is ``None``.
587587 """
588588 await self ._backend .pair (* args , ** kwargs )
@@ -596,7 +596,7 @@ async def unpair(self) -> None:
596596 This method is only available on Windows and Linux and will raise an
597597 exception on other platforms.
598598
599- .. versionchanged:: unreleased
599+ .. versionchanged:: 1.0
600600 No longer returns ``True``. Instead, the return type is ``None``.
601601 """
602602 await self ._backend .unpair ()
@@ -764,7 +764,7 @@ def callback(sender: BleakGATTCharacteristic, data: bytearray):
764764 .. versionchanged:: 0.18
765765 The first argument of the callback is now a :class:`BleakGATTCharacteristic`
766766 instead of an ``int``.
767- .. versionchanged:: unreleased
767+ .. versionchanged:: 1.0
768768 Added the ``cb`` parameter.
769769 """
770770 if not self .is_connected :
0 commit comments