From dcdb12bf2b3d21758fc045a5f58c512620df43c4 Mon Sep 17 00:00:00 2001 From: Jonathan Fontes Date: Mon, 11 May 2020 08:42:59 +0100 Subject: [PATCH] ADD: Changelog --- CHANGELOG.md | 18 ++++++++++++++++++ tests/AliasMethodTest.php | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 28cf202..658cf76 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,24 @@ All notable changes to `container` will be documented in this file. Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) principles. +## 1.5.0 - 2020-06-09 + +### Added +- new feature added `factory` and `set` accept array callable, e.g.: `$container->set('my-entry', [Test::class, 'getFoo']);` +- new feature added `alias`, in order to make aliases to match one entry to another. + +### Deprecated +- Nothing + +### Fixed +- Nothing + +### Removed +- Nothing + +### Security +- Nothing + ## 1.4.2 - 2020-05-10 ### Added diff --git a/tests/AliasMethodTest.php b/tests/AliasMethodTest.php index 01da665..086c93d 100644 --- a/tests/AliasMethodTest.php +++ b/tests/AliasMethodTest.php @@ -13,7 +13,7 @@ /** * @internal - * @coversNothing + * @coversDefaultClass */ final class AliasMethodTest extends TestCase {