Skip to content

Commit db01797

Browse files
committed
v9.71 release
1 parent 83260a6 commit db01797

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22

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

5-
> **Manual For v9.70**
5+
> **Manual For v9.71**
66
>
77
> [![Build Status](https://travis-ci.org/easylogging/easyloggingpp.png?branch=develop)](https://travis-ci.org/easylogging/easyloggingpp)
88
99
### Quick Links
1010

1111
[![download] Download Latest](http://easylogging.org/latest.zip)
1212

13-
[![notes] Release Notes](https://github.com/easylogging/easyloggingpp/tree/master/doc/RELEASE-NOTES-v9.70)
13+
[![notes] Release Notes](https://github.com/easylogging/easyloggingpp/tree/master/doc/RELEASE-NOTES-v9.71)
1414

15-
[![samples] Samples](https://github.com/easylogging/easyloggingpp/tree/v9.70/samples)
15+
[![samples] Samples](https://github.com/easylogging/easyloggingpp/tree/v9.71/samples)
1616

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

@@ -92,7 +92,7 @@
9292

9393
# Introduction
9494
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.70. For other versions please refer to corresponding [release](https://github.com/easylogging/easyloggingpp/releases) on github.
95+
This manual is for Easylogging++ v9.71. For other versions please refer to corresponding [release](https://github.com/easylogging/easyloggingpp/releases) on github.
9696

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

doc/RELEASE-NOTES-v9.71

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ API changes: No
1414
= NOTES =
1515
==========================
1616

17-
- See https://github.com/easylogging/easyloggingpp/blob/v9.70/README.md for manual for this release
17+
- See https://github.com/easylogging/easyloggingpp/blob/v9.71/README.md for manual for this release
1818
- See https://github.com/easylogging/easyloggingpp/tree/master/doc for other release notes
1919
- 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.70
2+
// Easylogging++ v9.71
33
// Single-header only, cross-platform logging library for C++ applications
44
//
55
// Copyright (c) 2014 Majid Khan
@@ -5611,9 +5611,9 @@ class Loggers : base::StaticClass {
56115611
class VersionInfo : base::StaticClass {
56125612
public:
56135613
/// @brief Current version number
5614-
static inline const std::string version(void) { return std::string("9.70"); }
5614+
static inline const std::string version(void) { return std::string("9.71"); }
56155615
/// @brief Release date of current version
5616-
static inline const std::string releaseDate(void) { return std::string("17-04-2014 1832hrs"); }
5616+
static inline const std::string releaseDate(void) { return std::string("23-04-2014 0953hrs"); }
56175617
};
56185618
} // namespace el
56195619
#undef VLOG_IS_ON

0 commit comments

Comments
 (0)