[Constracts] Split the global CHANGELOG in dedicated CHANGELOG per contract

This commit is contained in:
Grégoire Pineau 2020-02-10 11:54:33 +01:00
parent 9eb7cb1b7b
commit a05ee087a2
6 changed files with 35 additions and 4 deletions

View File

@ -0,0 +1,7 @@
CHANGELOG
=========
1.0.0
-----
* added `Cache` contract to extend PSR-6 with tag invalidation, callback-based computation and stampede protection

View File

@ -0,0 +1,7 @@
CHANGELOG
=========
1.2.0
-----
* added `trigger_deprecation` function

View File

@ -0,0 +1,7 @@
CHANGELOG
=========
1.1.0
-----
* added `EventDispatcherInterface` and `Event` in namespace `EventDispatcher`

View File

@ -0,0 +1,7 @@
CHANGELOG
=========
1.1.0
-----
* added `HttpClient` namespace with contracts for implementing flexible HTTP clients

View File

@ -4,16 +4,12 @@ CHANGELOG
1.1.0
-----
* added `HttpClient` namespace with contracts for implementing flexible HTTP clients
* added `EventDispatcherInterface` and `Event` in namespace `EventDispatcher`
* added `ServiceProviderInterface` in namespace `Service`
1.0.0
-----
* added `Service\ResetInterface` to provide a way to reset an object to its initial state
* added `Translation\TranslatorInterface` and `Translation\TranslatorTrait`
* added `Cache` contract to extend PSR-6 with tag invalidation, callback-based computation and stampede protection
* added `Service\ServiceSubscriberInterface` to declare the dependencies of a class that consumes a service locator
* added `Service\ServiceSubscriberTrait` to implement `Service\ServiceSubscriberInterface` using methods' return types
* added `Service\ServiceLocatorTrait` to help implement PSR-11 service locators

View File

@ -0,0 +1,7 @@
CHANGELOG
=========
1.0.0
-----
* added `Translation\TranslatorInterface` and `Translation\TranslatorTrait`