ChangeLog.txt 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. * Tue Mar 24 2014 - Andreas Schuh <andreas.schuh.84@gmail.com>
  2. - gflags: version 2.1.2
  3. - Moved project to GitHub
  4. - Added GFLAGS_NAMESPACE definition to gflags_declare.h
  5. - Fixed issue 94: Keep "google" as primary namespace and import symbols into "gflags" namespace
  6. - Fixed issue 96: Fix binary ABI compatibility with gflags 2.0 using "google" as primary namespace
  7. - Fixed issue 97/101: Removed (patched) CMake modules and enabled C language instead
  8. - Fixed issue 103: Set CMake policy CMP0042 to silence warning regarding MACOS_RPATH setting
  9. * Sun Mar 20 2014 - Andreas Schuh <google-gflags@googlegroups.com>
  10. - gflags: version 2.1.1
  11. - Fixed issue 77: GFLAGS_IS_A_DLL expands to empty string in gflags_declare.h
  12. - Fixed issue 79: GFLAGS_NAMESPACE not expanded to actual namespace in gflags_declare.h
  13. - Fixed issue 80: Allow include path to differ from GFLAGS_NAMESPACE
  14. * Thu Mar 20 2014 - Andreas Schuh <google-gflags@googlegroups.com>
  15. - gflags: version 2.1.0
  16. - Build system configuration using CMake instead of autotools
  17. - CPack packaging support for Debian/Ubuntu, Red Hat, and Mac OS X
  18. - Fixed issue 54: Fix "invalid suffix on literal" (C++11)
  19. - Fixed issue 57: Use _strdup instead of strdup on Windows
  20. - Fixed issue 62: Change all preprocessor include guards to start with GFLAGS_
  21. - Fixed issue 64: Add DEFINE_validator macro
  22. - Fixed issue 73: Warnings in Visual Studio 2010 and unable to compile unit test
  23. * Wed Jan 25 2012 - Google Inc. <google-gflags@googlegroups.com>
  24. - gflags: version 2.0
  25. - Changed the 'official' gflags email in setup.py/etc
  26. - Renamed google-gflags.sln to gflags.sln
  27. - Changed copyright text to reflect Google's relinquished ownership
  28. * Tue Dec 20 2011 - Google Inc. <opensource@google.com>
  29. - google-gflags: version 1.7
  30. - Add CommandLineFlagInfo::flag_ptr pointing to current storage (musji)
  31. - PORTING: flush after writing to stderr, needed on cygwin
  32. - PORTING: Clean up the GFLAGS_DLL_DECL stuff better
  33. - Fix a bug in StringPrintf() that affected large strings (csilvers)
  34. - Die at configure-time when g++ isn't installed
  35. * Fri Jul 29 2011 - Google Inc. <opensource@google.com>
  36. - google-gflags: version 1.6
  37. - BUGFIX: Fix a bug where we were leaving out a required $(top_srcdir)
  38. - Fix definition of clstring (jyrki)
  39. - Split up flag declares into its own file (jyrki)
  40. - Add --version support (csilvers)
  41. - Update the README for gflags with static libs
  42. - Update acx_pthread.m4 for nostdlib
  43. - Change ReparseCommandLineFlags to return void (csilvers)
  44. - Some doc typofixes and example augmentation (various)
  45. * Mon Jan 24 2011 - Google Inc. <opensource@google.com>
  46. - google-gflags: version 1.5
  47. - Better reporting of current vs default value (handler)
  48. - Add API for cleaning up of memory at program-exit (jmarantz)
  49. - Fix macros to work inside namespaces (csilvers)
  50. - Use our own string typedef in case string is redefined (csilvers)
  51. - Updated to autoconf 2.65
  52. * Wed Oct 13 2010 - Google Inc. <opensource@google.com>
  53. - google-gflags: version 1.4
  54. - Add a check to prevent passing 0 to DEFINE_string (jorg)
  55. - Reduce compile (.o) size (jyrki)
  56. - Some small changes to quiet debug compiles (alexk)
  57. - PORTING: better support static linking on windows (csilvers)
  58. - DOCUMENTATION: change default values, use validators, etc.
  59. - Update the NEWS file to be non-empty
  60. - Add pkg-config (.pc) files for libgflags and libgflags_nothreads
  61. * Mon Jan 4 2010 - Google Inc. <opensource@google.com>
  62. - google-gflags: version 1.3
  63. - PORTABILITY: can now build and run tests under MSVC (csilvers)
  64. - Remove the python gflags code, which is now its own package (tansell)
  65. - Clarify that "last flag wins" in the docs (csilvers)
  66. - Comment danger of using GetAllFlags in validators (wojtekm)
  67. - PORTABILITY: Some fixes necessary for c++0x (mboerger)
  68. - Makefile fix: $(srcdir) -> $(top_srcdir) in one place (csilvres)
  69. - INSTALL: autotools to autoconf v2.64 + automake v1.11 (csilvers)
  70. * Thu Sep 10 2009 - Google Inc. <opensource@google.com>
  71. - google-gflags: version 1.2
  72. - PORTABILITY: can now build and run tests under mingw (csilvers)
  73. - Using a string arg for a bool flag is a compile-time error (rbayardo)
  74. - Add --helpxml to gflags.py (salcianu)
  75. - Protect against a hypothetical global d'tor mutex problem (csilvers)
  76. - BUGFIX: can now define a flag after 'using namespace google' (hamaji)
  77. * Tue Apr 14 2009 - Google Inc. <opensource@google.com>
  78. - google-gflags: version 1.1
  79. - Add both foo and nofoo for boolean flags, with --undefok (andychu)
  80. - Better document how validators work (wojtekm)
  81. - Improve binary-detection for bash-completion (mtamsky)
  82. - Python: Add a concept of "key flags", used with --help (salcianu)
  83. - Python: Robustify flag_values (salcianu)
  84. - Python: Add a new DEFINE_bool alias (keir, andrewliu)
  85. - Python: Do module introspection based on module name (dsturtevant)
  86. - Fix autoconf a bit better, especially on windows and solaris (ajenjo)
  87. - BUG FIX: gflags_nothreads was linking against the wrong lib (ajenjo)
  88. - BUG FIX: threads-detection failed on FreeBSD; replace it (ajenjo)
  89. - PORTABILITY: Quiet an internal compiler error with SUSE 10 (csilvers)
  90. - PORTABILITY: Update deb.sh for more recenty debuilds (csilvers)
  91. - PORTABILITY: #include more headers to satify new gcc's (csilvers)
  92. - INSTALL: Updated to autoconf 2.61 and libtool 1.5.26 (csilvers)
  93. * Fri Oct 3 2008 - Google Inc. <opensource@google.com>
  94. - google-gflags: version 1.0
  95. - Add a missing newline to an error string (bcmills)
  96. - (otherwise exactly the same as gflags 1.0rc2)
  97. * Thu Sep 18 2008 - Google Inc. <opensource@google.com>
  98. - google-gflags: version 1.0rc2
  99. - Report current flag values in --helpxml (hdn)
  100. - Fix compilation troubles with gcc 4.3.3 (simonb)
  101. - BUG FIX: I was missing a std:: in DECLARE_string (csilvers)
  102. - BUG FIX: Clarify in docs how to specify --bool flags (csilvers)
  103. - BUG FIX: Fix --helpshort for source files not in a subdir (csilvers)
  104. - BUG FIX: Fix python unittest for 64-bit builds (bcmills)
  105. * Tue Aug 19 2008 - Google Inc. <opensource@google.com>
  106. - google-gflags: version 1.0rc1
  107. - Move #include files from google/ to gflags/ (csilvers)
  108. - Small optimizations to reduce binary (library) size (jyrki)
  109. - BUGFIX: forgot a std:: in one of the .h files (csilvers)
  110. - Speed up locking by making sure calls are inlined (ajenjo)
  111. - 64-BIT COMPATIBILITY: Use %PRId64 instead of %lld (csilvers)
  112. - PORTABILITY: fix Makefile to work with Cygwin (ajenjo)
  113. - PORTABILITY: fix code to compile under Visual Studio (ajenjo)
  114. - PORTABILITY: fix code to compile under Solaris 10 with CC (csilvers)
  115. * Mon Jul 21 2008 - Google Inc. <opensource@google.com>
  116. - google-gflags: version 0.9
  117. - Add the ability to validate a command-line flag (csilvers)
  118. - Add completion support for commandline flags in bash (daven)
  119. - Add -W compile flags to Makefile, when using gcc (csilvers)
  120. - Allow helpstring to be NULL (cristianoc)
  121. - Improved documentation of classes in the .cc file (csilvers)
  122. - Fix python bug with AppendFlagValues + shortnames (jjtswan)
  123. - Use bool instead of int for boolean flags in gflags.py (bcmills)
  124. - Simplify the way we declare flags, now more foolproof (csilvers)
  125. - Better error messages when bool flags collide (colohan)
  126. - Only evaluate DEFINE_foo macro args once (csilvers)
  127. * Wed Mar 26 2008 - Google Inc. <opensource@google.com>
  128. - google-gflags: version 0.8
  129. - Export DescribeOneFlag() in the API
  130. - Add support for automatic line wrapping at 80 cols for gflags.py
  131. - Bugfix: do not treat an isolated "-" the same as an isolated "--"
  132. - Update rpm spec to point to Google Code rather than sourceforge (!)
  133. - Improve documentation (including documenting thread-safety)
  134. - Improve #include hygiene
  135. - Improve testing
  136. * Thu Oct 18 2007 - Google Inc. <opensource@google.com>
  137. - google-gflags: version 0.7
  138. - Deal even more correctly with libpthread not linked in (csilvers)
  139. - Add STRIP_LOG, an improved DO_NOT_SHOW_COMMANDLINE_HELP (sioffe)
  140. - Be more accurate printing default flag values in --help (dsturtevant)
  141. - Reduce .o file size a bit by using shorter namespace names (jeff)
  142. - Use relative install path, so 'setup.py --home' works (csilvers)
  143. - Notice when a boolean flag has a non-boolean default (bnmouli)
  144. - Broaden --helpshort to match foo-main.cc and foo_main.cc (hendrie)
  145. - Fix "no modules match" message for --helpshort, etc (hendrie)
  146. * Wed Aug 15 2007 - Google Inc. <opensource@google.com>
  147. - google-gflags: version 0.6
  148. - Deal correctly with case that libpthread is not linked in (csilvers)
  149. - Update Makefile/tests so we pass "make distcheck" (csilvers)
  150. - Document and test that last assignment to a flag wins (wan)
  151. * Tue Jun 12 2007 - Google Inc. <opensource@google.com>
  152. - google-gflags: version 0.5
  153. - Include all m4 macros in the distribution (csilvers)
  154. - Python: Fix broken data_files field in setup.py (sidlon)
  155. - Python: better string serliaizing and unparsing (abo, csimmons)
  156. - Fix checks for NaN and inf to work with Mac OS X (csilvers)
  157. * Thu Apr 19 2007 - Google Inc. <opensource@google.com>
  158. - google-gflags: version 0.4
  159. - Remove is_default from GetCommandLineFlagInfo (csilvers)
  160. - Portability fixes: includes, strtoll, gcc4.3 errors (csilvers)
  161. - A few doc typo cleanups (csilvers)
  162. * Wed Mar 28 2007 - Google Inc. <opensource@google.com>
  163. - google-gflags: version 0.3
  164. - python portability fix: use popen instead of subprocess (csilvers)
  165. - Add is_default to CommandLineFlagInfo (pchien)
  166. - Make docs a bit prettier (csilvers)
  167. - Actually include the python files in the distribution! :-/ (csilvers)
  168. * Mon Jan 22 2007 - Google Inc. <opensource@google.com>
  169. - google-gflags: version 0.2
  170. - added support for python commandlineflags, as well as c++
  171. - gflags2man, a script to turn flags into a man page (dchristian)
  172. * Wed Dec 13 2006 - Google Inc. <opensource@google.com>
  173. - google-gflags: version 0.1