ChangeLog 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. 2013-02-01 Google Inc. <opensource@google.com>
  2. * google-glog: version 0.3.3
  3. * Add --disable-rtti option for configure.
  4. * Visual Studio build and test fix.
  5. * QNX build fix (thanks vanuan).
  6. * Reduce warnings.
  7. * Fixed LOG_SYSRESULT (thanks ukai).
  8. * FreeBSD build fix (thanks yyanagisawa).
  9. * Clang build fix.
  10. * Now users can re-initialize glog after ShutdownGoogleLogging.
  11. * Color output support by GLOG_colorlogtostderr (thanks alexs).
  12. * Now glog's ABI around flags are compatible with gflags.
  13. * Document mentions how to modify flags from user programs.
  14. 2012-01-12 Google Inc. <opensource@google.com>
  15. * google-glog: version 0.3.2
  16. * Clang support.
  17. * Demangler and stacktrace improvement for newer GCCs.
  18. * Now fork(2) doesn't mess up log files.
  19. * Make valgrind happier.
  20. * Reduce warnings for more -W options.
  21. * Provide a workaround for ERROR defined by windows.h.
  22. 2010-06-15 Google Inc. <opensource@google.com>
  23. * google-glog: version 0.3.1
  24. * GLOG_* environment variables now work even when gflags is installed.
  25. * Snow leopard support.
  26. * Now we can build and test from out side tree.
  27. * Add DCHECK_NOTNULL.
  28. * Add ShutdownGoogleLogging to close syslog (thanks DGunchev)
  29. * Fix --enable-frame-pointers option (thanks kazuki.ohta)
  30. * Fix libunwind detection (thanks giantchen)
  31. 2009-07-30 Google Inc. <opensource@google.com>
  32. * google-glog: version 0.3.0
  33. * Fix a deadlock happened when user uses glog with recent gflags.
  34. * Suppress several unnecessary warnings (thanks keir).
  35. * NetBSD and OpenBSD support.
  36. * Use Win32API GetComputeNameA properly (thanks magila).
  37. * Fix user name detection for Windows (thanks ademin).
  38. * Fix several minor bugs.
  39. 2009-04-10 Google Inc. <opensource@google.com>
  40. * google-glog: version 0.2.1
  41. * Fix timestamps of VC++ version.
  42. * Add pkg-config support (thanks Tomasz)
  43. * Fix build problem when building with gtest (thanks Michael)
  44. * Add --with-gflags option for configure (thanks Michael)
  45. * Fixes for GCC 4.4 (thanks John)
  46. 2009-01-23 Google Inc. <opensource@google.com>
  47. * google-glog: version 0.2
  48. * Add initial Windows VC++ support.
  49. * Google testing/mocking frameworks integration.
  50. * Link pthread library automatically.
  51. * Flush logs in signal handlers.
  52. * Add macros LOG_TO_STRING, LOG_AT_LEVEL, DVLOG, and LOG_TO_SINK_ONLY.
  53. * Log microseconds.
  54. * Add --log_backtrace_at option.
  55. * Fix some minor bugs.
  56. 2008-11-18 Google Inc. <opensource@google.com>
  57. * google-glog: version 0.1.2
  58. * Add InstallFailureSignalHandler(). (satorux)
  59. * Re-organize the way to produce stacktraces.
  60. * Don't define unnecessary macro DISALLOW_EVIL_CONSTRUCTORS.
  61. 2008-10-15 Google Inc. <opensource@google.com>
  62. * google-glog: version 0.1.1
  63. * Support symbolize for MacOSX 10.5.
  64. * BUG FIX: --vmodule didn't work with gflags.
  65. * BUG FIX: symbolize_unittest failed with GCC 4.3.
  66. * Several fixes on the document.
  67. 2008-10-07 Google Inc. <opensource@google.com>
  68. * google-glog: initial release:
  69. The glog package contains a library that implements application-level
  70. logging. This library provides logging APIs based on C++-style
  71. streams and various helper macros.