From e57722d9ccc4218b4f07d420fdc1a1d9ab503946 Mon Sep 17 00:00:00 2001 From: Franck Cassedanne Date: Thu, 11 Jun 2015 15:39:45 +0100 Subject: [PATCH] Release 1.1.0 --- CHANGELOG.md | 11 +++++++++-- README.md | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 08d5105..29ec2b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,16 @@ # APIx-log changelog +#### Version 1.1.0 (11-Jun-2015) +- Fixed a PHP 5.3 specific syntax error (unit-test) +- Renamed `Apix\Log\Logger\Null` to `Apix\Log\Logger\Nil`. 'Null' as a classname is now reserved to PHP7 usage, see [PHP RFC: Reserve More Types in PHP 7](https://wiki.php.net/rfc/reserve_more_types_in_php_7) +- Some semantic modifications e.g. now using "Log Buckets" to holds loggers. +- Added bucket self-prioritization as opposed to the FIFO mode used until now. +- Fixed the cascading or not of log entries to subsequent buckets. +- Added some aditional tests -- 100% code coverage! + #### Version 1.0.2 (10-Jun-2015) - Added the logged message can be the context directly i.e. not a string. -- Added `\InvalidArgumentException` with an explicite message to the main constructor. +- Added `\InvalidArgumentException` with an explicit message to the main constructor. - Added handling of Exception as context e.g. `$logger()->critical( new \Exception('Boo!') )`. #### Version 1.0.1 (9-Jun-2015) @@ -18,7 +26,6 @@ #### Version 1.0.0 (30-Sept-2014) - Initial release. -
   _|_|    _|_|    _|     _|      _|
 _|    _| _|    _|         _|    _|
diff --git a/README.md b/README.md
index 7e3780d..a3c5552 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@ APIx Log, very thin PSR-3 logger
 Minimalist **PSR-3** compliant logger.
 
 * Unit **tested** and compliant with PSR0, PSR1 and PSR2.
-* Continuously integrated with **PHP 5.3**, **5.4**, **5.5** and **5.6**
+* Continuously integrated against **PHP 5.3**, **5.4**, **5.5** and **5.6**.
 * Available as a **[Composer](http://https://packagist.org/packages/apix/log)** and as a **[PEAR](http://pear.ouarz.net)** package.
 
 Feel free to comment, send pull requests and patches...