diff --git a/README.md b/README.md index 76af850c..61c8728c 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Theengs Decoder library translates these data chains into human readable data le It's also a simplified way of defining the thing properties and how to decode these. -Theengs Decoder supports the decoding of [more than 80 Bluetooth devices](https://decoder.theengs.io/devices/devices.html). +Theengs Decoder supports the decoding of [more than 90 Bluetooth devices](https://decoder.theengs.io/devices/devices.html). Theengs Decoder can be used on memory constraint environments like micro controllers (ESP32, ESP8266, Arduino), on a PC or on a Unix server. Unit testing assures that the modification done on the library doesn't affect previous capabilities. diff --git a/docs/README.md b/docs/README.md index 03933785..9412e6e7 100644 --- a/docs/README.md +++ b/docs/README.md @@ -16,7 +16,7 @@ Theengs Decoder library translates these data chains into human readable data le It's also a simplified way of defining the thing properties and how to decode these. -Theengs Decoder supports the decoding of [more than 80 Bluetooth devices](https://decoder.theengs.io/devices/devices.html). +Theengs Decoder supports the decoding of [more than 90 Bluetooth devices](https://decoder.theengs.io/devices/devices.html). Theengs Decoder can be used on memory constraint environments like micro controllers (ESP32, ESP8266, Arduino), on a PC or on a Unix server. Unit testing assures that the modification done on the library doesn't affect previous capabilities. diff --git a/library.json b/library.json index 28a00ac0..a032a017 100644 --- a/library.json +++ b/library.json @@ -7,7 +7,7 @@ "type": "git", "url": "https://github.com/theengs/decoder.git" }, - "version": "1.6.3", + "version": "1.6.4", "authors": [ { diff --git a/library.properties b/library.properties index ec191c7d..deda6328 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=TheengsDecoder -version=1.6.3 +version=1.6.4 author=Florian Robert, Ryan Powell maintainer=Florian Robert sentence=A simple, efficient, portable and lightweight library for Internet of Things messages decoding. diff --git a/python/CMakeLists.txt b/python/CMakeLists.txt index e539e546..cfde51f4 100644 --- a/python/CMakeLists.txt +++ b/python/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.3) -project(decoder VERSION 1.6.3) +project(decoder VERSION 1.6.4) find_package(PythonExtensions REQUIRED) add_library(_decoder MODULE TheengsDecoder/_decoder.cpp src/decoder.cpp)