From 3e5b558410077eb0e5ea1469cd2456ce9d957701 Mon Sep 17 00:00:00 2001 From: Simon Cahill Date: Thu, 23 Nov 2023 11:54:17 +0100 Subject: [PATCH] Updated version to revision 1 --- CMakeLists.txt | 2 +- vars.mk | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2b8cfb5..2c55348 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.10) ### # Project definition ### -project(isotp LANGUAGES C VERSION 1.0.0 DESCRIPTION "A platform-agnostic ISOTP implementation in C for embedded devices.") +project(isotp LANGUAGES C VERSION 1.0.1 DESCRIPTION "A platform-agnostic ISOTP implementation in C for embedded devices.") option(isotpc_USE_INCLUDE_DIR "Copy header files to separate include directory in current binary dir for better separation of header files to combat potential naming conflicts." OFF) option(isotpc_STATIC_LIBRARY "Compile libisotpc as a static library, instead of a shared library." OFF) diff --git a/vars.mk b/vars.mk index aaccb13..636f21c 100644 --- a/vars.mk +++ b/vars.mk @@ -32,7 +32,7 @@ CPPSTD := "c++0x" LIB_NAME := "libisotp.so" MAJOR_VER := "1" MINOR_VER := "0" -REVISION := "0" +REVISION := "1" OUTPUT_NAME := $(LIB_NAME).$(MAJOR_VER).$(MINOR_VER).$(REVISION) ###