Skip to content

Commit 8c5873f

Browse files
committed
v9.70 with some refactoring and API changes
1 parent f79798d commit 8c5873f

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ API changes: Yes
2323
= NOTES =
2424
==========================
2525

26-
- See https://github.com/easylogging/easyloggingpp/blob/v9.69/README.md for manual for this release
26+
- See https://github.com/easylogging/easyloggingpp/blob/v9.70/README.md for manual for this release
2727
- See https://github.com/easylogging/easyloggingpp/tree/master/doc for other release notes
2828
- 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.69
2+
// Easylogging++ v9.70
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.69"); }
5614+
static inline const std::string version(void) { return std::string("9.70"); }
56155615
/// @brief Release date of current version
5616-
static inline const std::string releaseDate(void) { return std::string("16-04-2014 1943hrs"); }
5616+
static inline const std::string releaseDate(void) { return std::string("17-04-2014 1832hrs"); }
56175617
};
56185618
} // namespace el
56195619
#undef VLOG_IS_ON

0 commit comments

Comments
 (0)