Skip to content

Commit 3905868

Browse files
committed
v9.72 release
1 parent 24c3d26 commit 3905868

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.71**
5+
> **Manual For v9.72**
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.71)
13+
[![notes] Release Notes](https://github.com/easylogging/easyloggingpp/tree/master/doc/RELEASE-NOTES-v9.72)
1414

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

+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.71/README.md for manual for this release
17+
- See https://github.com/easylogging/easyloggingpp/blob/v9.72/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.71
2+
// Easylogging++ v9.72
33
// Single-header only, cross-platform logging library for C++ applications
44
//
55
// Copyright (c) 2014 Majid Khan
@@ -5614,9 +5614,9 @@ class Loggers : base::StaticClass {
56145614
class VersionInfo : base::StaticClass {
56155615
public:
56165616
/// @brief Current version number
5617-
static inline const std::string version(void) { return std::string("9.71"); }
5617+
static inline const std::string version(void) { return std::string("9.72"); }
56185618
/// @brief Release date of current version
5619-
static inline const std::string releaseDate(void) { return std::string("23-04-2014 0953hrs"); }
5619+
static inline const std::string releaseDate(void) { return std::string("25-04-2014 1619hrs"); }
56205620
};
56215621
} // namespace el
56225622
#undef VLOG_IS_ON

0 commit comments

Comments
 (0)