From 03a2de61f3fe147196b54cf8d6cff1be9329a8f4 Mon Sep 17 00:00:00 2001 From: DigiH <17110652+DigiH@users.noreply.github.com> Date: Wed, 6 May 2026 20:56:40 +0200 Subject: [PATCH] Update version to 2.2.0 --- 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 132e5691..feb92ef5 100644 --- a/library.json +++ b/library.json @@ -7,7 +7,7 @@ "type": "git", "url": "https://github.com/theengs/decoder.git" }, - "version": "2.1.0", + "version": "2.2.0", "authors": [ { diff --git a/library.properties b/library.properties index 67b35e4c..b7319c37 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=TheengsDecoder -version=2.1.0 +version=2.2.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 7c1b8861..6ad50a37 100644 --- a/python/CMakeLists.txt +++ b/python/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.5) -project(decoder VERSION 2.1.0) +project(decoder VERSION 2.2.0) find_package(PythonExtensions REQUIRED) add_library(_decoder MODULE TheengsDecoder/_decoder.cpp src/decoder.cpp)