From ced6f8e70dd682de5bd2a29c204bb1b063400371 Mon Sep 17 00:00:00 2001 From: Andreas Schuh Date: Tue, 24 Mar 2015 16:12:25 +0000 Subject: [PATCH] Release v2.1.2 --- CMakeLists.txt | 2 +- ChangeLog.txt | 10 ++++++++++ README.md | 7 +++++++ 3 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 66881df..54b5c35 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,7 @@ include (utils) # ---------------------------------------------------------------------------- # package information set (PACKAGE_NAME "gflags") -set (PACKAGE_VERSION "2.1.1") +set (PACKAGE_VERSION "2.1.2") set (PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}") set (PACKAGE_TARNAME "${PACKAGE_NAME}-${PACKAGE_VERSION}") set (PACKAGE_BUGREPORT "https://github.com/schuhschuh/gflags/issues") diff --git a/ChangeLog.txt b/ChangeLog.txt index e14d88e..eea9f83 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,13 @@ +* Tue Mar 24 2014 - Andreas Schuh + +- gflags: version 2.1.2 +- Moved project to GitHub +- Added GFLAGS_NAMESPACE definition to gflags_declare.h +- Fixed issue 94: Keep "google" as primary namespace and import symbols into "gflags" namespace +- Fixed issue 96: Fix binary ABI compatibility with gflags 2.0 using "google" as primary namespace +- Fixed issue 97/101: Removed (patched) CMake modules and enabled C language instead +- Fixed issue 103: Set CMake policy CMP0042 to silence warning regarding MACOS_RPATH setting + * Sun Mar 20 2014 - Andreas Schuh - gflags: version 2.1.1 diff --git a/README.md b/README.md index 1d6790d..640e436 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,13 @@ 24 March 2015 ------------- +Released gflags 2.1.2 with fixes of ABI incompatibilities to 2.0 caused +by namespace change. The deprecated "google" namespace is yet kept as primary +namespace while sybmols are imported into the new "gflags" namespace by default. +This can be configured using GFLAGS_NAMESPACE and GLAGS_INCLUDE_DIR. Problems +with the (patched) CMake modules FindThreads.cmake and CheckTypeSize.cmake +are resolved by re-enabling the C language again even though gflags is C++. + Finalized move of gflags project from Google Code to GitHub. Email addresses of original issue reporters got lost in the process. Given the age of most issue reports, this should be neglibable.