From 0cb206899adcd82abb59401010684fa22dcb4999 Mon Sep 17 00:00:00 2001 From: DigiH Date: Sat, 3 Sep 2022 23:12:57 +0200 Subject: [PATCH] Update version to 0.8.0 (#194) --- library.json | 2 +- library.properties | 2 +- python/CMakeLists.txt | 2 +- python/setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/library.json b/library.json index 366d044e..4c1f6aad 100644 --- a/library.json +++ b/library.json @@ -7,7 +7,7 @@ "type": "git", "url": "https://github.com/theengs/decoder.git" }, - "version": "0.7.0", + "version": "0.8.0", "authors": [ { diff --git a/library.properties b/library.properties index 1b590ecb..a5f4d498 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=TheengsDecoder -version=0.7.0 +version=0.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 f651b606..f4d443b9 100644 --- a/python/CMakeLists.txt +++ b/python/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.3) -project(decoder VERSION 0.7.0) +project(decoder VERSION 0.8.0) find_package(PythonExtensions REQUIRED) add_library(_decoder MODULE TheengsDecoder/_decoder.cpp ../src/decoder.cpp) diff --git a/python/setup.py b/python/setup.py index 5de6a8ed..0d711d36 100644 --- a/python/setup.py +++ b/python/setup.py @@ -2,7 +2,7 @@ setup( name="TheengsDecoder", - version="0.7.0", + version="0.8.0", description="A message decoder for the Internet of Things", author='Theengs', license=" GPL-3.0 License",