From f07840434347520c11959caa54ab3476e16ceee2 Mon Sep 17 00:00:00 2001 From: Oscar Otero Date: Mon, 9 May 2022 15:49:03 +0200 Subject: [PATCH] updated workflow --- .github/workflows/main.yaml | 10 +++------- CHANGELOG.md | 10 +++++++++- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 327717c..74c9a3a 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -26,7 +26,6 @@ jobs: key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} restore-keys: | ${{ runner.os }}-php- - - name: Install dependencies if: steps.composer-cache.outputs.cache-hit != 'true' run: composer install --prefer-dist --no-progress @@ -44,11 +43,8 @@ jobs: - 7.2 - 7.3 - 7.4 - composer-args: [ "" ] - include: - - php: 8.0 - composer-args: --ignore-platform-reqs - fail-fast: false + - 8.0 + - 8.1 steps: - name: Checkout @@ -67,7 +63,7 @@ jobs: restore-keys: ${{ runner.os }}-php-${{ matrix.php }}-composer- - name: Install dependencies - run: composer install --prefer-dist --no-progress ${{ matrix.composer-args }} + run: composer install --prefer-dist --no-progress - name: Tests run: composer test diff --git a/CHANGELOG.md b/CHANGELOG.md index 19c183a..3c5b0b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [2.0.2] - 2022-05-09 +### Added +- Support psr/container 2 [#13] + ## [2.0.1] - 2020-12-04 ### Added - Support for PHP 8.0 @@ -81,9 +85,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Fixed - Improved docs and examples in README -## 0.1.0 - 2017-04-19 +## [0.1.0] - 2017-04-19 First version +[#13]: https://github.com/middlewares/request-handler/issues/13 + +[2.0.2]: https://github.com/middlewares/request-handler/compare/v2.0.1...v2.0.2 [2.0.1]: https://github.com/middlewares/request-handler/compare/v2.0.0...v2.0.1 [2.0.0]: https://github.com/middlewares/request-handler/compare/v1.4.0...v2.0.0 [1.4.0]: https://github.com/middlewares/request-handler/compare/v1.3.0...v1.4.0 @@ -96,3 +103,4 @@ First version [0.4.0]: https://github.com/middlewares/request-handler/compare/v0.3.0...v0.4.0 [0.3.0]: https://github.com/middlewares/request-handler/compare/v0.2.0...v0.3.0 [0.2.0]: https://github.com/middlewares/request-handler/compare/v0.1.0...v0.2.0 +[0.1.0]: https://github.com/middlewares/request-handler/releases/tag/v0.1.0