Skip to content

Commit 14a8e79

Browse files
committed
v9.77 release
1 parent efea01a commit 14a8e79

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
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.76 (development / unreleased version)**
6+
> **Manual For v9.77**
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.76)
14+
[![notes] Release Notes](https://github.com/easylogging/easyloggingpp/tree/master/doc/RELEASE-NOTES-v9.77)
1615

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

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

@@ -91,7 +90,7 @@
9190

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

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

src/easylogging++.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Easylogging++ v9.76 (development / unreleased version)
2+
// Easylogging++ v9.77
33
// Single-header only, cross-platform logging library for C++ applications
44
//
55
// Copyright (c) 2014 Majid Khan
@@ -5950,9 +5950,9 @@ class Loggers : base::StaticClass {
59505950
class VersionInfo : base::StaticClass {
59515951
public:
59525952
/// @brief Current version number
5953-
static inline const std::string version(void) { return std::string("9.76"); }
5953+
static inline const std::string version(void) { return std::string("9.77"); }
59545954
/// @brief Release date of current version
5955-
static inline const std::string releaseDate(void) { return std::string("19-11-2014 0907hrs"); }
5955+
static inline const std::string releaseDate(void) { return std::string("21-11-2014 0915hrs"); }
59565956
};
59575957
} // namespace el
59585958
#undef VLOG_IS_ON

0 commit comments

Comments
 (0)