From c487859888450f6a33f618180bac5358f104e367 Mon Sep 17 00:00:00 2001 From: Damien Cauquil Date: Wed, 4 Oct 2023 18:27:15 +0200 Subject: [PATCH] Added suport for latest interface version (Oct 2023), as mentionned by @lostpixel in issue #73. --- btlejack/__init__.py | 3 ++- btlejack/version.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/btlejack/__init__.py b/btlejack/__init__.py index 196c8b3..3e59eae 100755 --- a/btlejack/__init__.py +++ b/btlejack/__init__.py @@ -216,7 +216,8 @@ def main(): 253: fw_v1_path, 255: fw_v2_path, 256: fw_v2_path, - 257: fw_v2_path + 257: fw_v2_path, + 258: fw_v2_path } if os.name == 'posix': diff --git a/btlejack/version.py b/btlejack/version.py index a9b2d85..b66e982 100644 --- a/btlejack/version.py +++ b/btlejack/version.py @@ -14,4 +14,4 @@ such as a wrong packaging or typos. """ VERSION = '2.1' -RELEASE = '1' +RELEASE = '2'