From 8f0bea394ea1ea36faf8a0b886028233c7e472b8 Mon Sep 17 00:00:00 2001 From: Tobias Nyholm Date: Mon, 13 Mar 2017 10:25:46 +0100 Subject: [PATCH] Updated changelog and alias for adapters (#144) --- Changelog.md | 13 +++++++++++++ composer.json | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index d9d465c..754c347 100644 --- a/Changelog.md +++ b/Changelog.md @@ -4,9 +4,22 @@ The change log describes what is "Added", "Removed", "Changed" or "Fixed" betwee ## UNRELEASED +## 0.5.0 + ### Added * Support for the new `TaggableCacheItemPoolInterface`. +* Support for PSR-16 SimpleCache + +### Changed + +* The behavior of `CacheItem::getTags()` has changed. It will not return the tags stored in the cache storage. + +### Removed + +* `CacheItem::getExpirationDate()`. Use `CacheItem::getExpirationTimestamp()` +* `CacheItem::getTags()`. Use `CacheItem::getPreviousTags()` +* `CacheItem::addTag()`. Use `CacheItem::setTags()` ## 0.4.2 diff --git a/composer.json b/composer.json index 4e60dbe..3e5ec0e 100644 --- a/composer.json +++ b/composer.json @@ -51,7 +51,7 @@ }, "extra": { "branch-alias": { - "dev-master": "0.5-dev" + "dev-master": "0.6-dev" } } }