diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 327717c..a1f1907 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -39,16 +39,16 @@ jobs: runs-on: ubuntu-latest strategy: - matrix: - php: - - 7.2 - - 7.3 - - 7.4 - composer-args: [ "" ] - include: - - php: 8.0 - composer-args: --ignore-platform-reqs - fail-fast: false + matrix: + php: + - 7.2 + - 7.3 + - 7.4 + - 8.0 + - 8.1 + - 8.2 + - 8.3 + fail-fast: false steps: - name: Checkout @@ -67,7 +67,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 75d24d9..247ec3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,13 @@ # Change Log - 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/). +## [3.0.2] - 2024-01-12 +### Fixed +- Updated dependencies. + ## [3.0.1] - 2020-12-02 ### Added - Support for PHP 8 @@ -82,12 +85,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Changed - Updated to `http-interop/http-middleware#0.3` -## 0.1.0 - 2016-10-04 +## [0.1.0] - 2016-10-04 First version [#8]: https://github.com/middlewares/payload/issues/8 [#9]: https://github.com/middlewares/payload/issues/9 +[3.0.2]: https://github.com/middlewares/payload/compare/v3.0.1...v3.0.2 [3.0.1]: https://github.com/middlewares/payload/compare/v3.0.0...v3.0.1 [3.0.0]: https://github.com/middlewares/payload/compare/v2.1.1...v3.0.0 [2.1.1]: https://github.com/middlewares/payload/compare/v2.1.0...v2.1.1 @@ -99,3 +103,4 @@ First version [0.4.0]: https://github.com/middlewares/payload/compare/v0.3.0...v0.4.0 [0.3.0]: https://github.com/middlewares/payload/compare/v0.2.0...v0.3.0 [0.2.0]: https://github.com/middlewares/payload/compare/v0.1.0...v0.2.0 +[0.1.0]: https://github.com/middlewares/payload/releases/tag/v0.1.0