Release v2.1.2

This commit is contained in:
Andreas Schuh 2015-03-24 16:12:25 +00:00
parent 7e0245c64f
commit ced6f8e70d
3 changed files with 18 additions and 1 deletions

View file

@ -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")

View file

@ -1,3 +1,13 @@
* Tue Mar 24 2014 - Andreas Schuh <andreas.schuh.84@gmail.com>
- 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 <google-gflags@googlegroups.com>
- gflags: version 2.1.1

View file

@ -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.