Skip to content

Commit c2094fb

Browse files
committed
Prepare for 1.0
1 parent 44e9dc9 commit c2094fb

File tree

2 files changed

+13
-12
lines changed

2 files changed

+13
-12
lines changed

CachePoolChain.php

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,9 @@ class CachePoolChain implements CacheItemPoolInterface, TaggableCacheItemPoolInt
4343
/**
4444
* @param array $pools
4545
* @param array $options {
46-
* @type bool $skip_on_failure If true we will remove a pool form the chain if it fails.
47-
* }
46+
*
47+
* @type bool $skip_on_failure If true we will remove a pool form the chain if it fails.
48+
* }
4849
*/
4950
public function __construct(array $pools, array $options = [])
5051
{
@@ -268,16 +269,6 @@ public function commit()
268269
return $result;
269270
}
270271

271-
/**
272-
* {@inheritdoc}
273-
*
274-
* @deprecated use invalidateTags()
275-
*/
276-
public function clearTags(array $tags)
277-
{
278-
return $this->invalidateTags($tags);
279-
}
280-
281272
/**
282273
* {@inheritdoc}
283274
*/

Changelog.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ The change log describes what is "Added", "Removed", "Changed" or "Fixed" betwee
44

55
## UNRELEASED
66

7+
## 1.0.0
8+
9+
### Added
10+
11+
The `CachePoolChain` does now implement `Cache\TagInterop\TaggableCacheItemPoolInterface`
12+
13+
### Removed
14+
15+
- Removed deprecated function `clearTags`
16+
717
## 0.5.1
818

919
### Fixed

0 commit comments

Comments
 (0)