Skip to content

Commit

Permalink
new version
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarotero committed Jan 12, 2024
1 parent 55c999e commit 9b6a6e5
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 13 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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

0 comments on commit 9b6a6e5

Please sign in to comment.