Skip to content

Commit

Permalink
v9.59 release - see release notes @ easylogging.org
Browse files Browse the repository at this point in the history
  • Loading branch information
abumq committed Mar 21, 2014
1 parent 4b14e6d commit 8b8dea4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@

‫بسم الله الرَّحْمَنِ الرَّحِيمِ

> **Manual For v9.58**
> **Manual For v9.59**
>
> [![Build Status](https://travis-ci.org/easylogging/easyloggingpp.png?branch=develop)](https://travis-ci.org/easylogging/easyloggingpp)
### Quick Links

[![download] Download Latest](http://easylogging.org/latest.zip)

[![notes] Release Notes](https://github.com/easylogging/easyloggingpp/tree/master/doc/RELEASE-NOTES-v9.58)
[![notes] Release Notes](https://github.com/easylogging/easyloggingpp/tree/master/doc/RELEASE-NOTES-v9.59)

[![samples] Samples](https://github.com/easylogging/easyloggingpp/tree/v9.58/samples)
[![samples] Samples](https://github.com/easylogging/easyloggingpp/tree/v9.59/samples)

[![www] Project Homepage](http://easylogging.org/)

Expand Down Expand Up @@ -439,7 +439,7 @@ Some of logging options can be set by macros, this is a thoughtful decision, for
| `_ELPP_STOP_ON_FIRST_ASSERTION` | Aborts application on first assertion failure. This assertion is due to invalid input e.g, invalid configuration file etc. |
| `_ELPP_UNICODE` | Enables Unicode support when logging. Requires `_START_EASYLOGGINGPP` |
| `_ELPP_THREAD_SAFE` | Enables thread-safety - make sure -lpthread linking for linux. |
| `_ELPP_FORCE_USE_STD_THREAD` | Forces to use C++ standard library for threading (Only useful when using `_ELPP_THREAD_SAFE` (since v9.58) |
| `_ELPP_FORCE_USE_STD_THREAD` | Forces to use C++ standard library for threading (Only useful when using `_ELPP_THREAD_SAFE` (since v9.59) |
| `_ELPP_STACKTRACE_ON_CRASH` | Applicable to GCC only. Enables stacktrace on application crash |
| `_ELPP_DISABLE_DEFAULT_CRASH_HANDLING` | Disables default crash handling. You can use el::Helpers::setCrashHandler to use your own handler. |
| `_ELPP_DISABLE_LOGS` | Disables all logs - (preprocessing) |
Expand Down
6 changes: 3 additions & 3 deletions src/easylogging++.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Easylogging++ v9.58 (development / unreleased version)
// Easylogging++ v9.59
// Single-header only, cross-platform logging library for C++ applications
//
// Copyright (c) 2012 - 2014 Majid Khan
Expand Down Expand Up @@ -5286,9 +5286,9 @@ class Loggers : base::StaticClass {
class VersionInfo : base::StaticClass {
public:
/// @brief Current version number
static inline const std::string version(void) { return std::string("9.58"); }
static inline const std::string version(void) { return std::string("9.59"); }
/// @brief Release date of current version
static inline const std::string releaseDate(void) { return std::string("14-03-2014 0950hrs"); }
static inline const std::string releaseDate(void) { return std::string("21-03-2014 2137hrs"); }
};
} // namespace el
#undef VLOG_IS_ON
Expand Down

0 comments on commit 8b8dea4

Please sign in to comment.