From 5c085ad351069d7fb959b6a42442d1477654092f Mon Sep 17 00:00:00 2001 From: Timo Schinkel Date: Wed, 14 Sep 2022 08:57:21 +0200 Subject: [PATCH] Introduce CHANGELOG.md Introduce `CHANGELOG.md`, populated with the releases starting with `1.0.0`. The format is based on [Keep a Changelog](https://keepachangelog.com) and the changelog from psr/cache. --- CHANGELOG.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..adebda2 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,28 @@ +# Changelog + +All notable changes to this project will be documented in this file, in reverse chronological order by release. + +## [3.0.0](https://github.com/php-fig/simple-cache/compare/2.0.0...3.0.0) - 2021-10-29 + +### Changed + +- **BREAKING** All methods have return types + +## [2.0.0](https://github.com/php-fig/simple-cache/compare/1.0.1...2.0.0) - 2021-10-29 + +### Changed + +- Adds parameter types +- Makes `CacheException` extend `\Throwable` +- Requires PHP 8 + + +## [1.0.1](https://github.com/php-fig/simple-cache/compare/1.0.0...1.0.1) - 2018-03-05 + +### Fixed + +- Include slash at the beginning for DateInterval in typehint - michaelcullum + +## 1.0.0 - 2017-01-02 + +Initial stable release; reflects accepted [PSR-16 specification](https://www.php-fig.org/psr/psr-16/)