Added
- Added support for per-entry expiration ([248][gh-pull-0248]):
- In addition to the existing TTL and TTI (time-to-idle) expiration times that
apply to all entries in the cache, the `sync` and `future` caches can now allow
different expiration times for individual entries.
- Added the `remove` method to the `sync` and `future` caches
([255](gh-issue-0255)):
- Like the `invalidate` method, this method discards any cached value for the
key, but returns a clone of the value.
Fixed
- Fixed the caches mutating a deque node through a `NonNull` pointer derived from a
shared reference. ([259][gh-pull-0259])
Removed
- Removed `unsync` cache that was marked as deprecated in [v0.10.0](version-0100).