Skip to content

Commit 4a74f67

Browse files
committed
v9.75 release
1 parent afef0b8 commit 4a74f67

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ API changes: No
1717
= NOTES =
1818
==========================
1919

20-
- See https://github.com/easylogging/easyloggingpp/blob/v9.74/README.md for manual for this release
20+
- See https://github.com/easylogging/easyloggingpp/blob/v9.75/README.md for manual for this release
2121
- See https://github.com/easylogging/easyloggingpp/tree/master/doc for other release notes
2222
- 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.74 (development / unreleased version)
2+
// Easylogging++ v9.75
33
// Single-header only, cross-platform logging library for C++ applications
44
//
55
// Copyright (c) 2014 Majid Khan
@@ -5673,9 +5673,9 @@ class Loggers : base::StaticClass {
56735673
class VersionInfo : base::StaticClass {
56745674
public:
56755675
/// @brief Current version number
5676-
static inline const std::string version(void) { return std::string("9.74"); }
5676+
static inline const std::string version(void) { return std::string("9.75"); }
56775677
/// @brief Release date of current version
5678-
static inline const std::string releaseDate(void) { return std::string("27-07-2014 1432hrs"); }
5678+
static inline const std::string releaseDate(void) { return std::string("06-08-2014 1303hrs"); }
56795679
};
56805680
} // namespace el
56815681
#undef VLOG_IS_ON

0 commit comments

Comments
 (0)