From 8b79823a15f33b66e51c3c3c07d84ae10b4cd272 Mon Sep 17 00:00:00 2001 From: DigiH Date: Thu, 14 Nov 2024 09:57:40 +0100 Subject: [PATCH] Update version to 1.8.0 (#574) --- library.json | 2 +- library.properties | 2 +- python/CMakeLists.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/library.json b/library.json index 973ca2ab..7500e7ed 100644 --- a/library.json +++ b/library.json @@ -7,7 +7,7 @@ "type": "git", "url": "https://github.com/theengs/decoder.git" }, - "version": "1.7.8", + "version": "1.8.0", "authors": [ { diff --git a/library.properties b/library.properties index 85a52819..136547d5 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=TheengsDecoder -version=1.7.8 +version=1.8.0 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 6b2c4cc6..4a1f6cb3 100644 --- a/python/CMakeLists.txt +++ b/python/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.3) -project(decoder VERSION 1.7.8) +project(decoder VERSION 1.8.0) find_package(PythonExtensions REQUIRED) add_library(_decoder MODULE TheengsDecoder/_decoder.cpp src/decoder.cpp)