diff options
author | Andreas Schuh <andreas.schuh.84@gmail.com> | 2016-11-25 18:32:19 +0000 |
---|---|---|
committer | Andreas Schuh <andreas.schuh.84@gmail.com> | 2016-11-25 18:54:37 +0000 |
commit | f8a0efe03aa69b3336d8e228b37d4ccb17324b88 (patch) | |
tree | b2e4ff4550561814389a193b408e0fd833b9742f | |
parent | 2f336a2a8781ccce7a436ec9a428772e7885c83f (diff) | |
download | gflags-f8a0efe03aa69b3336d8e228b37d4ccb17324b88.tar.gz gflags-f8a0efe03aa69b3336d8e228b37d4ccb17324b88.tar.bz2 gflags-f8a0efe03aa69b3336d8e228b37d4ccb17324b88.zip |
Release v2.2.0
-rw-r--r-- | ChangeLog.txt | 19 | ||||
-rw-r--r-- | README.md | 19 |
2 files changed, 38 insertions, 0 deletions
diff --git a/ChangeLog.txt b/ChangeLog.txt index eea9f83..e88d863 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,22 @@ +* Fri Nov 25 2016 - Andreas Schuh <andreas.schuh.84@gmail.com> + +- gflags: version 2.2.0 +- Merged 178: Implicitly convert dashes in option names to underscores +- Merged 159: CI builds and automatic tests with Travis CI and AppVeyor +- Merged 158: Use enum for flag value types +- Merged 126: File name postfix for static libraries on Windows +- Closed issue 120: Configure and install gflags.pc file for pkg-config users +- Fixed issue 127: snprintf already defined when building with MSVC 2015 +- Fixed issue 51/138: Memory leaks reported by valgrind +- Fixed issue 173: Validate flags only once +- Fixed issue 168: Unsigned and signed comparison in gflags_reporting.cc +- Fixed issues 176/153: Add -lpthread link argument to Bazel build, refactor BUILD rules +- Fixed issue 89: Add GFLAGS_IS_A_DLL to imported CMake target INTERFACE_COMPILE_DEFINITIONS +- Fixed issue 104: Set INTERFACE_INCLUDE_DIRECTORIES of exported CMake targets +- Fixed issue 174: Missing gflags-targets.cmake file after installation +- Fixed issue 186: Error linking to gflags IMPLIB with MSVC using CMake +- Closed issue 106: Add example project to test use of gflags library + * Tue Mar 24 2014 - Andreas Schuh <andreas.schuh.84@gmail.com> - gflags: version 2.1.2 @@ -1,6 +1,25 @@ [![Build Status](https://travis-ci.org/gflags/gflags.svg?branch=master)](https://travis-ci.org/gflags/gflags) [![Build status](https://ci.appveyor.com/api/projects/status/4ctod566ysraus74/branch/master?svg=true)](https://ci.appveyor.com/project/schuhschuh/gflags/branch/master) +25 November 2016 +---------------- + +I've finally released gflags 2.2.0. + +This release adds support for use of the gflags library as external dependency +not only in projects using CMake, but also [Bazel](https://bazel.build/), +or [pkg-config](https://www.freedesktop.org/wiki/Software/pkg-config/). +One new minor feature is added in this release: when a command flag argument +contains dashes, these are implicitly converted to underscores. +This is to allow those used to separate words of the flag name by dashes +to do so, while the flag variable names are required to use underscores. + +Memory leaks reported by valgrind should be resolved by this release. +This release fixes build errors with MS Visual Studio 2015. + +Please report any further issues with this release using the GitHub issue tracker. + + 24 March 2015 ------------- |