Skip to content

Commit 67d2dfd

Browse files
authored
Merge pull request #1403 from basvodde/master
Changed version to 4.0
2 parents 9b6b789 + 096d402 commit 67d2dfd

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project(CppUTest)
22

3-
set(CppUTest_version_major 3)
4-
set(CppUTest_version_minor 8)
3+
set(CppUTest_version_major 4)
4+
set(CppUTest_version_minor 0)
55

66
# 2.6.3 is needed for ctest support
77
# 3.1 is needed for target_sources

build/cmake_package_files/CppUTestConfigVersion.cmake

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
# PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version,
88
# but only if the requested major version is the same as the current one.
99
# The variable CVF_VERSION must be set before calling configure_file().
10-
set(PACKAGE_VERSION "3.8")
10+
set(PACKAGE_VERSION "4.0")
1111
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
1212
set(PACKAGE_VERSION_COMPATIBLE FALSE)
1313
else()
14-
if("3.8" MATCHES "^([0-9]+)\\.")
14+
if("4.0" MATCHES "^([0-9]+)\\.")
1515
set(CVF_VERSION_MAJOR "${CMAKE_MATCH_1}")
1616
else()
17-
set(CVF_VERSION_MAJOR "3.8")
17+
set(CVF_VERSION_MAJOR "4.0")
1818
endif()
1919
if(PACKAGE_FIND_VERSION_MAJOR STREQUAL CVF_VERSION_MAJOR)
2020
set(PACKAGE_VERSION_COMPATIBLE TRUE)

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
AC_PREREQ([2.68])
3-
AC_INIT([CppUTest], [3.8], [https://github.com/cpputest/cpputest])
3+
AC_INIT([CppUTest], [4.0], [https://github.com/cpputest/cpputest])
44
AC_CONFIG_AUX_DIR([.])
55
AM_INIT_AUTOMAKE([subdir-objects])
66
AC_CONFIG_SRCDIR([src/CppUTest/Utest.cpp])

0 commit comments

Comments
 (0)