diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 327717c..fb33d5d 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -44,15 +44,15 @@ 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 + - 8.2 + - 8.3 + - 8.4 steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install PHP uses: shivammathur/setup-php@v2 @@ -60,17 +60,17 @@ jobs: php-version: ${{ matrix.php }} - name: Cache PHP dependencies - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: vendor key: ${{ runner.os }}-php-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }} 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 - name: Tests coverage - run: composer coverage + run: composer coverage \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 34af72a..49b8d72 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/). +## [2.0.2] - Unreleased +### Fixed +- Compatibility with middlewares/util:^4.0 [#5] + ## [2.0.1] - 2020-12-02 ### Added - Support for PHP 8 @@ -32,13 +35,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Changed - Update `middlewares/utils` library for compatibility with `middlewares/request-handler`. -## 0.1.0 - 2018-08-22 +## [0.1.0] - 2018-08-22 First version [#3]: https://github.com/middlewares/base-path-router/issues/3 +[#5]: https://github.com/middlewares/base-path-router/issues/5 +[2.0.2]: https://github.com/middlewares/base-path-router/compare/v2.0.1...HEAD [2.0.1]: https://github.com/middlewares/base-path-router/compare/v2.0.0...v2.0.1 [2.0.0]: https://github.com/middlewares/base-path-router/compare/v1.0.0...v2.0.0 [1.0.0]: https://github.com/middlewares/base-path-router/compare/v0.2.1...v1.0.0 [0.2.1]: https://github.com/middlewares/base-path-router/compare/v0.2.0...v0.2.1 [0.2.0]: https://github.com/middlewares/base-path-router/compare/v0.1.0...v0.2.0 +[0.1.0]: https://github.com/middlewares/base-path-router/releases/tag/v0.1.0