ChangeLog 3.6 KB

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