Skip to content

Commit

Permalink
v9.61 release
Browse files Browse the repository at this point in the history
  • Loading branch information
abumq committed Mar 28, 2014
1 parent 380585c commit 4ca95c7
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.60**
> **Manual For v9.61**
>
> [![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.60)
[![notes] Release Notes](https://github.com/easylogging/easyloggingpp/tree/master/doc/RELEASE-NOTES-v9.61)

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

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

Expand Down Expand Up @@ -431,7 +431,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.60) |
| `_ELPP_FORCE_USE_STD_THREAD` | Forces to use C++ standard library for threading (Only useful when using `_ELPP_THREAD_SAFE` (since v9.61) |
| `_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.60 (development / unreleased version)
// Easylogging++ v9.61
// Single-header only, cross-platform logging library for C++ applications
//
// Copyright (c) 2014 Majid Khan
Expand Down Expand Up @@ -5373,9 +5373,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.60"); }
static inline const std::string version(void) { return std::string("9.61"); }
/// @brief Release date of current version
static inline const std::string releaseDate(void) { return std::string("28-03-2014 1138hrs"); }
static inline const std::string releaseDate(void) { return std::string("29-03-2014 0008hrs"); }
};
} // namespace el
#undef VLOG_IS_ON
Expand Down

0 comments on commit 4ca95c7

Please sign in to comment.