Skip to content

Commit

Permalink
release 9.83
Browse files Browse the repository at this point in the history
  • Loading branch information
abumq committed Jul 21, 2016
1 parent e07559f commit 99d0a46
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
‫بسم الله الرَّحْمَنِ الرَّحِيمِ


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

[![download] Latest Release](https://github.com/easylogging/easyloggingpp/releases/latest)

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

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

[![paypal]](http://muflihun.com/donation/)

Expand Down Expand Up @@ -91,7 +91,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.82. For other versions please refer to corresponding [release](https://github.com/easylogging/easyloggingpp/releases) on github.
This manual is for Easylogging++ v9.83. For other versions please refer to corresponding [release](https://github.com/easylogging/easyloggingpp/releases) on github.

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

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

Release type: Minor
API changes: No

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

- Fixes version number. Please see previous release notes for actual releases
- See https://github.com/easylogging/easyloggingpp/blob/v9.83/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,7 +1,7 @@
//
// Bismillah ar-Rahmaan ar-Raheem
//
// Easylogging++ v9.81
// Easylogging++ v9.83
// Single-header only, cross-platform logging library for C++ applications
//
// Copyright (c) 2016 muflihun.com
Expand Down Expand Up @@ -6022,9 +6022,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.82"); }
static inline const std::string version(void) { return std::string("9.83"); }
/// @brief Release date of current version
static inline const std::string releaseDate(void) { return std::string("14-07-2016 0857hrs"); }
static inline const std::string releaseDate(void) { return std::string("21-07-2016 1442hrs"); }
};
} // namespace el
#undef VLOG_IS_ON
Expand Down

0 comments on commit 99d0a46

Please sign in to comment.