Skip to content

Commit

Permalink
Prepare for 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Nyholm committed Jul 17, 2017
1 parent 44e9dc9 commit c2094fb
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 12 deletions.
15 changes: 3 additions & 12 deletions CachePoolChain.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,9 @@ class CachePoolChain implements CacheItemPoolInterface, TaggableCacheItemPoolInt
/**
* @param array $pools
* @param array $options {
* @type bool $skip_on_failure If true we will remove a pool form the chain if it fails.
* }
*
* @type bool $skip_on_failure If true we will remove a pool form the chain if it fails.
* }
*/
public function __construct(array $pools, array $options = [])
{
Expand Down Expand Up @@ -268,16 +269,6 @@ public function commit()
return $result;
}

/**
* {@inheritdoc}
*
* @deprecated use invalidateTags()
*/
public function clearTags(array $tags)
{
return $this->invalidateTags($tags);
}

/**
* {@inheritdoc}
*/
Expand Down
10 changes: 10 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ The change log describes what is "Added", "Removed", "Changed" or "Fixed" betwee

## UNRELEASED

## 1.0.0

### Added

The `CachePoolChain` does now implement `Cache\TagInterop\TaggableCacheItemPoolInterface`

### Removed

- Removed deprecated function `clearTags`

## 0.5.1

### Fixed
Expand Down

0 comments on commit c2094fb

Please sign in to comment.