Skip to content

Commit

Permalink
Updated version to revision 1
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCahill committed Nov 23, 2023
1 parent a955bd7 commit 3e5b558
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion vars.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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)

###
Expand Down

0 comments on commit 3e5b558

Please sign in to comment.