Skip to content

Commit 0b561c9

Browse files
committed
new version
1 parent 9dec874 commit 0b561c9

File tree

2 files changed

+15
-6
lines changed

2 files changed

+15
-6
lines changed

.github/workflows/main.yaml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,20 @@ jobs:
1313

1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v4
1717

1818
- name: Validate composer.json and composer.lock
1919
run: composer validate
2020

2121
- name: Cache Composer packages
2222
id: composer-cache
23-
uses: actions/cache@v2
23+
uses: actions/cache@v4
2424
with:
2525
path: vendor
2626
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
2727
restore-keys: |
2828
${{ runner.os }}-php-
29+
2930
- name: Install dependencies
3031
if: steps.composer-cache.outputs.cache-hit != 'true'
3132
run: composer install --prefer-dist --no-progress
@@ -45,18 +46,21 @@ jobs:
4546
- 7.4
4647
- 8.0
4748
- 8.1
49+
- 8.2
50+
- 8.3
51+
- 8.4
4852

4953
steps:
5054
- name: Checkout
51-
uses: actions/checkout@v2
55+
uses: actions/checkout@v4
5256

5357
- name: Install PHP
5458
uses: shivammathur/setup-php@v2
5559
with:
5660
php-version: ${{ matrix.php }}
5761

5862
- name: Cache PHP dependencies
59-
uses: actions/cache@v2
63+
uses: actions/cache@v4
6064
with:
6165
path: vendor
6266
key: ${{ runner.os }}-php-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}
@@ -69,4 +73,4 @@ jobs:
6973
run: composer test
7074

7175
- name: Tests coverage
72-
run: composer coverage
76+
run: composer coverage

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
# Change Log
2-
32
All notable changes to this project will be documented in this file.
43

54
The format is based on [Keep a Changelog](http://keepachangelog.com/)
65
and this project adheres to [Semantic Versioning](http://semver.org/).
76

7+
## [2.0.3] - 2025-03-06
8+
### Added
9+
- Support for psr/http-message 2 [#14]
10+
811
## [2.0.2] - 2022-05-09
912
### Added
1013
- Support psr/container 2 [#13]
@@ -89,7 +92,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
8992
First version
9093

9194
[#13]: https://github.com/middlewares/request-handler/issues/13
95+
[#14]: https://github.com/middlewares/request-handler/issues/14
9296

97+
[2.0.3]: https://github.com/middlewares/request-handler/compare/v2.0.2...v2.0.3
9398
[2.0.2]: https://github.com/middlewares/request-handler/compare/v2.0.1...v2.0.2
9499
[2.0.1]: https://github.com/middlewares/request-handler/compare/v2.0.0...v2.0.1
95100
[2.0.0]: https://github.com/middlewares/request-handler/compare/v1.4.0...v2.0.0

0 commit comments

Comments
 (0)