Skip to content

Commit 6fd4f17

Browse files
committed
release ready 9.79
1 parent 7fb78d1 commit 6fd4f17

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

17-
[![samples] Samples](https://github.com/easylogging/easyloggingpp/tree/v9.78/samples)
16+
[![samples] Samples](https://github.com/easylogging/easyloggingpp/tree/v9.79/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.78. For other versions please refer to corresponding [release](https://github.com/easylogging/easyloggingpp/releases) on github.
94+
This manual is for Easylogging++ v9.79. 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.79

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,6 @@ API changes: Yes
6666
= NOTES =
6767
==========================
6868

69-
- See https://github.com/easylogging/easyloggingpp/blob/v9.78/README.md for manual for this release
69+
- See https://github.com/easylogging/easyloggingpp/blob/v9.79/README.md for manual for this release
7070
- See https://github.com/easylogging/easyloggingpp/tree/master/doc for other release notes
7171
- 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.78 (development / unreleased version)
2+
// Easylogging++ v9.79
33
// Single-header only, cross-platform logging library for C++ applications
44
//
55
// Copyright (c) 2014 Majid Khan
@@ -5978,9 +5978,9 @@ class Loggers : base::StaticClass {
59785978
class VersionInfo : base::StaticClass {
59795979
public:
59805980
/// @brief Current version number
5981-
static inline const std::string version(void) { return std::string("9.78"); }
5981+
static inline const std::string version(void) { return std::string("9.79"); }
59825982
/// @brief Release date of current version
5983-
static inline const std::string releaseDate(void) { return std::string("06-01-2015 1322hrs"); }
5983+
static inline const std::string releaseDate(void) { return std::string("07-01-2015 1005hrs"); }
59845984
};
59855985
} // namespace el
59865986
#undef VLOG_IS_ON

0 commit comments

Comments
 (0)