diff --git a/micropython/bluetooth/aioble-core/manifest.py b/micropython/bluetooth/aioble-core/manifest.py index 2448769e6..c2d335b5c 100644 --- a/micropython/bluetooth/aioble-core/manifest.py +++ b/micropython/bluetooth/aioble-core/manifest.py @@ -1,4 +1,4 @@ -metadata(version="0.2.0") +metadata(version="0.3.0") package( "aioble", diff --git a/micropython/bluetooth/aioble/aioble/device.py b/micropython/bluetooth/aioble/aioble/device.py index 30a54a4fd..8844eb42a 100644 --- a/micropython/bluetooth/aioble/aioble/device.py +++ b/micropython/bluetooth/aioble/aioble/device.py @@ -212,7 +212,7 @@ def _run_task(self): async def disconnect(self, timeout_ms=2000): await self.disconnected(timeout_ms, disconnect=True) - async def disconnected(self, timeout_ms=60000, disconnect=False): + async def disconnected(self, timeout_ms=None, disconnect=False): if not self.is_connected(): return diff --git a/micropython/bluetooth/aioble/manifest.py b/micropython/bluetooth/aioble/manifest.py index 2979a726b..565d6060f 100644 --- a/micropython/bluetooth/aioble/manifest.py +++ b/micropython/bluetooth/aioble/manifest.py @@ -3,7 +3,7 @@ # code. This allows (for development purposes) all the files to live in the # one directory. -metadata(version="0.4.1") +metadata(version="0.5.0") # Default installation gives you everything. Install the individual # components (or a combination of them) if you want a more minimal install.