Skip to content

Commit ab4e5bd

Browse files
committed
fix: update library version to 1.4.1 in CMakeLists.txt
Fixes #165 - Update project version in root CMakeLists.txt to 1.4.1 - Update PACKAGE_VERSION in src/CMakeLists.txt to 1.4.1 - Ensures compiled library has correct version number for the upcoming 1.4.1 release
1 parent ce0773b commit ab4e5bd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.10)
2-
project(cpp-ipc)
2+
project(cpp-ipc VERSION 1.4.1)
33

44
option(LIBIPC_BUILD_TESTS "Build all of libipc's own tests." OFF)
55
option(LIBIPC_BUILD_DEMOS "Build all of libipc's own demos." OFF)

src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
project(ipc)
22

3-
set (PACKAGE_VERSION 1.3.0)
3+
set (PACKAGE_VERSION 1.4.1)
44

55
aux_source_directory(${LIBIPC_PROJECT_DIR}/src/libipc SRC_FILES)
66
aux_source_directory(${LIBIPC_PROJECT_DIR}/src/libipc/sync SRC_FILES)

0 commit comments

Comments
 (0)