From a12da80c775fa3e7335f6935cf422da440d89783 Mon Sep 17 00:00:00 2001 From: Brad King Date: Fri, 11 Jun 2010 14:39:37 -0400 Subject: [PATCH 1/5] CMake 2.8.2-rc1 --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 69b45a4f1..2cb0b5234 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -338,9 +338,9 @@ ENDMACRO (CMAKE_BUILD_UTILITIES) # The CMake version number. SET(CMake_VERSION_MAJOR 2) SET(CMake_VERSION_MINOR 8) -SET(CMake_VERSION_PATCH 1) -#SET(CMake_VERSION_TWEAK 0) -#SET(CMake_VERSION_RC 1) +SET(CMake_VERSION_PATCH 2) +SET(CMake_VERSION_TWEAK 0) +SET(CMake_VERSION_RC 1) # Releases define a tweak level. IF(DEFINED CMake_VERSION_TWEAK) From 9949f9fbff2f635285857d2fa74fe769a11eb125 Mon Sep 17 00:00:00 2001 From: Brad King Date: Tue, 15 Jun 2010 14:27:44 -0400 Subject: [PATCH 2/5] ChangeLog: Mention "current" and "since" versions --- ChangeLog.manual | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ChangeLog.manual b/ChangeLog.manual index 29162e9ef..f3ba79062 100644 --- a/ChangeLog.manual +++ b/ChangeLog.manual @@ -1,4 +1,4 @@ -Changes since CMake 2.8.1 +Changes in CMake 2.8.2-rc1 (since 2.8.1): - Build on Tru64 (#10542) - Build on mingw-w64 - Build on old Sun (#10550, #10543) From 5b3987bc4198e27f1ab060cd31a095ab1e532d32 Mon Sep 17 00:00:00 2001 From: Brad King Date: Tue, 15 Jun 2010 14:38:47 -0400 Subject: [PATCH 3/5] CMake 2.8.2-rc2 --- CMakeLists.txt | 2 +- ChangeLog.manual | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 21a966691..3945be714 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -341,7 +341,7 @@ SET(CMake_VERSION_MAJOR 2) SET(CMake_VERSION_MINOR 8) SET(CMake_VERSION_PATCH 2) SET(CMake_VERSION_TWEAK 0) -SET(CMake_VERSION_RC 1) +SET(CMake_VERSION_RC 2) # Releases define a tweak level. IF(DEFINED CMake_VERSION_TWEAK) diff --git a/ChangeLog.manual b/ChangeLog.manual index db8e99288..89ecd9f20 100644 --- a/ChangeLog.manual +++ b/ChangeLog.manual @@ -1,3 +1,37 @@ +Changes in CMake 2.8.2-rc2 (since 2.8.2-rc1) +-------------------------------------------- + +Bill Hoffman (1): + Make sure libarchive uses cmzlib and not the system libz if found. + +Brad King (12): + Use forward slashes for objects in response files + Use platform variable for response file flag + Use response file for objects on MinGW and MSYS + Generalize CTest.Update* test dashboard script helpers + ctest_update: Support custom Git update command + ctest_update: Support Git upstream branch rewrites + Fix CMake data and doc paths in Cygwin package + Document scope of source file properties + Run CTest.NoNewline test using built CMake + Tru64: Place cmOStringStream vtable uniquely (#10541) + Enable BootstrapTest on MSYS + Tru64: Use full-path include directives in Makefiles (#10569) + +Christoph Watzl (1): + Fix nested source groups with VS 10 (#9863) + +Clinton Stimpson (2): + Support pthreads on irix. + Remove macro for querying qmake for qmake variables. + +David Cole (2): + Fix issue #10346. Error if SOURCE_DIR is empty. + Remove CTestTest3. + +Zach Mullen (1): + Extra coverage glob should subtract the explicitly defined excluded files + Changes in CMake 2.8.2-rc1 (since 2.8.1): - Build on Tru64 (#10542) - Build on mingw-w64 From 7f662c5c629e768959a679bfd732c2799c324705 Mon Sep 17 00:00:00 2001 From: Brad King Date: Tue, 22 Jun 2010 10:08:36 -0400 Subject: [PATCH 4/5] CMake 2.8.2-rc3 --- CMakeLists.txt | 2 +- ChangeLog.manual | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3945be714..9c2601731 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -341,7 +341,7 @@ SET(CMake_VERSION_MAJOR 2) SET(CMake_VERSION_MINOR 8) SET(CMake_VERSION_PATCH 2) SET(CMake_VERSION_TWEAK 0) -SET(CMake_VERSION_RC 2) +SET(CMake_VERSION_RC 3) # Releases define a tweak level. IF(DEFINED CMake_VERSION_TWEAK) diff --git a/ChangeLog.manual b/ChangeLog.manual index 89ecd9f20..333d005bf 100644 --- a/ChangeLog.manual +++ b/ChangeLog.manual @@ -1,3 +1,25 @@ +Changes in CMake 2.8.2-rc3 (since 2.8.2-rc2) +-------------------------------------------- +Brad King (1): + Preserve ENV{MAKEFLAGS} in CMake script mode + +David Cole (4): + Remove "Microsoft Visual Studio .NET" from VS8 and VS9 find modules. + Use full path file names in generate.stamp.list. + Use full path file names to express dependencies. + Look in the ctest ini file for GitCommand. + +James Bigler (2): + Fixed: CUDA_VERSION_MAJOR/MINOR now computed after first run. + CUDA_VERSION variable passed to REGEX needs quotes to work when not defined. + +Mathieu Malaterre (1): + Cleanup FindDCMTK (using foreach). Fix linking on win32 static libs. + +Zach Mullen (2): + Do not exit if stoptime is passed. + Document ctest_build() TARGET option + Changes in CMake 2.8.2-rc2 (since 2.8.2-rc1) -------------------------------------------- From e010d1f688cac98f690e68f95f05c6763d806add Mon Sep 17 00:00:00 2001 From: Brad King Date: Thu, 24 Jun 2010 10:48:52 -0400 Subject: [PATCH 5/5] CMake 2.8.2-rc4 --- CMakeLists.txt | 2 +- ChangeLog.manual | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9c2601731..c6ad85ec6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -341,7 +341,7 @@ SET(CMake_VERSION_MAJOR 2) SET(CMake_VERSION_MINOR 8) SET(CMake_VERSION_PATCH 2) SET(CMake_VERSION_TWEAK 0) -SET(CMake_VERSION_RC 3) +SET(CMake_VERSION_RC 4) # Releases define a tweak level. IF(DEFINED CMake_VERSION_TWEAK) diff --git a/ChangeLog.manual b/ChangeLog.manual index 333d005bf..ada7fc288 100644 --- a/ChangeLog.manual +++ b/ChangeLog.manual @@ -1,3 +1,26 @@ +Changes in CMake 2.8.2-rc4 (since 2.8.2-rc3) +-------------------------------------------- +Bill Hoffman (1): + Fix for bug #10859, ctest exit exception incorrectly reported. + +Brad King (3): + Run CMake.HTML test without net access (#10857) + Run CMake.HTML test with older xmllint (#10857) + CTest: Parse empty Git commits correctly + +David Cole (2): + Qualify name of extraction location with ExternalProject name. + For VS10: Really use full path file names. + +James Bigler (1): + Add support for the emulation version of the cudart library. + +Mathieu Malaterre (1): + Cleanup FindOpenSSL. Add support for win64 installation. + +Zach Mullen (1): + Parallel CTest hangs if serial test has depends + Changes in CMake 2.8.2-rc3 (since 2.8.2-rc2) -------------------------------------------- Brad King (1):