Skip to content

Commit

Permalink
v9.70 with some refactoring and API changes
Browse files Browse the repository at this point in the history
  • Loading branch information
abumq committed Apr 17, 2014
1 parent f79798d commit 8c5873f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 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.69**
> **Manual For v9.70**
>
> [![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.69)
[![notes] Release Notes](https://github.com/easylogging/easyloggingpp/tree/master/doc/RELEASE-NOTES-v9.70)

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

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

Expand Down Expand Up @@ -92,7 +92,7 @@

# Introduction
Easylogging++ is single header only, feature-rich, efficient logging library for C++ applications. It has been written keeping three things in mind; performance, management (setup, configure, logging, simplicity) and portability. Its highly configurable and extremely useful for small to large sized projects.
This manual is for Easylogging++ v9.69. For other versions please refer to corresponding [release](https://github.com/easylogging/easyloggingpp/releases) on github.
This manual is for Easylogging++ v9.70. For other versions please refer to corresponding [release](https://github.com/easylogging/easyloggingpp/releases) on github.

[![top] Goto Top](#table-of-contents)

Expand Down
2 changes: 1 addition & 1 deletion doc/RELEASE-NOTES-v9.70
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ API changes: Yes
= NOTES =
==========================

- See https://github.com/easylogging/easyloggingpp/blob/v9.69/README.md for manual for this release
- See https://github.com/easylogging/easyloggingpp/blob/v9.70/README.md for manual for this release
- See https://github.com/easylogging/easyloggingpp/tree/master/doc for other release notes
- Closed issues: https://github.com/easylogging/easyloggingpp/issues?page=1&state=closed
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.69
// Easylogging++ v9.70
// Single-header only, cross-platform logging library for C++ applications
//
// Copyright (c) 2014 Majid Khan
Expand Down Expand Up @@ -5611,9 +5611,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.69"); }
static inline const std::string version(void) { return std::string("9.70"); }
/// @brief Release date of current version
static inline const std::string releaseDate(void) { return std::string("16-04-2014 1943hrs"); }
static inline const std::string releaseDate(void) { return std::string("17-04-2014 1832hrs"); }
};
} // namespace el
#undef VLOG_IS_ON
Expand Down

0 comments on commit 8c5873f

Please sign in to comment.