Skip to content

Commit

Permalink
v9.73 release
Browse files Browse the repository at this point in the history
  • Loading branch information
abumq committed Jun 17, 2014
1 parent 8bb6ed7 commit 73a8419
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@

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

> **Manual For v9.72**
> **Manual For v9.73**
>
> [![Build Status](https://travis-ci.org/easylogging/easyloggingpp.png?branch=develop)](https://travis-ci.org/easylogging/easyloggingpp)
### Quick Links

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

[![notes] Release Notes](https://github.com/easylogging/easyloggingpp/tree/master/doc/RELEASE-NOTES-v9.72)
[![notes] Release Notes](https://github.com/easylogging/easyloggingpp/tree/master/doc/RELEASE-NOTES-v9.73)

[![samples] Samples](https://github.com/easylogging/easyloggingpp/tree/v9.72/samples)
[![samples] Samples](https://github.com/easylogging/easyloggingpp/tree/v9.73/samples)

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

Expand Down Expand Up @@ -92,7 +92,7 @@

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

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

Expand Down
19 changes: 19 additions & 0 deletions doc/RELEASE-NOTES-v9.73
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Easylogging++ v9.73 RELEASE NOTES
---------------------------------

Release type: Minor
API changes: No

===========================
= NEW FEATURES =
===========================

- Ability to add spaces automatically (issue #179)

==========================
= NOTES =
==========================

- See https://github.com/easylogging/easyloggingpp/blob/v9.73/README.md for manual for this release
- See https://github.com/easylogging/easyloggingpp/tree/master/doc for other release notes
- Closed issues: https://github.com/easylogging/easyloggingpp/issues?page=1&state=closed
6 changes: 3 additions & 3 deletions src/easylogging++.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Easylogging++ v9.72
// Easylogging++ v9.73
// Single-header only, cross-platform logging library for C++ applications
//
// Copyright (c) 2014 Majid Khan
Expand Down Expand Up @@ -5619,9 +5619,9 @@ class Loggers : base::StaticClass {
class VersionInfo : base::StaticClass {
public:
/// @brief Current version number
static inline const std::string version(void) { return std::string("9.72"); }
static inline const std::string version(void) { return std::string("9.73"); }
/// @brief Release date of current version
static inline const std::string releaseDate(void) { return std::string("25-04-2014 1619hrs"); }
static inline const std::string releaseDate(void) { return std::string("18-06-2014 0825hrs"); }
};
} // namespace el
#undef VLOG_IS_ON
Expand Down

0 comments on commit 73a8419

Please sign in to comment.