Skip to content

Commit 789e16a

Browse files
committed
release ready
1 parent 57006a2 commit 789e16a

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

README.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,18 @@
22

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

5-
-##### YOU ARE CURRENTLY BROWSING `develop` BRANCH. PLEASE SWITCH TO [`master`](https://github.com/easylogging/easyloggingpp) BRANCH IF YOU ARE NOT CONTRIBUTOR
65

7-
> **Manual For v9.77 (development / unreleased version)**
6+
> **Manual For v9.78**
87
>
98
> [![Build Status](https://travis-ci.org/easylogging/easyloggingpp.png?branch=develop)](https://travis-ci.org/easylogging/easyloggingpp)
109
1110
### Quick Links
1211

1312
[![download] Latest Release](https://github.com/easylogging/easyloggingpp/releases/latest)
1413

15-
[![notes] Release Notes](https://github.com/easylogging/easyloggingpp/tree/master/doc/RELEASE-NOTES-v9.77)
14+
[![notes] Release Notes](https://github.com/easylogging/easyloggingpp/tree/master/doc/RELEASE-NOTES-v9.78)
1615

17-
[![samples] Samples](https://github.com/easylogging/easyloggingpp/tree/v9.77/samples)
16+
[![samples] Samples](https://github.com/easylogging/easyloggingpp/tree/v9.78/samples)
1817

1918
[![paypal]](http://muflihun.com/donation/)
2019

@@ -92,7 +91,7 @@
9291

9392
# Introduction
9493
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.
95-
This manual is for Easylogging++ v9.77. For other versions please refer to corresponding [release](https://github.com/easylogging/easyloggingpp/releases) on github.
94+
This manual is for Easylogging++ v9.78. For other versions please refer to corresponding [release](https://github.com/easylogging/easyloggingpp/releases) on github.
9695

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

doc/RELEASE-NOTES-v9.78

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ API changes: No
3131
- Experimental async logging only for specific compilers
3232
- Removed `easyloggingpp` as namespace
3333
- Changed support email address
34-
- See https://github.com/easylogging/easyloggingpp/blob/v9.77/README.md for manual for this release
34+
- See https://github.com/easylogging/easyloggingpp/blob/v9.78/README.md for manual for this release
3535
- See https://github.com/easylogging/easyloggingpp/tree/master/doc for other release notes
3636
- Closed issues: https://github.com/easylogging/easyloggingpp/issues?page=1&state=closed

src/easylogging++.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Easylogging++ v9.77 (development / unreleased version)
2+
// Easylogging++ v9.78
33
// Single-header only, cross-platform logging library for C++ applications
44
//
55
// Copyright (c) 2014 Majid Khan
@@ -5974,9 +5974,9 @@ class Loggers : base::StaticClass {
59745974
class VersionInfo : base::StaticClass {
59755975
public:
59765976
/// @brief Current version number
5977-
static inline const std::string version(void) { return std::string("9.77"); }
5977+
static inline const std::string version(void) { return std::string("9.78"); }
59785978
/// @brief Release date of current version
5979-
static inline const std::string releaseDate(void) { return std::string("21-11-2014 0915hrs"); }
5979+
static inline const std::string releaseDate(void) { return std::string("06-01-2015 1322hrs"); }
59805980
};
59815981
} // namespace el
59825982
#undef VLOG_IS_ON

0 commit comments

Comments
 (0)