Skip to content

Commit 7e7bc95

Browse files
committed
prepare release
1 parent 53f658e commit 7e7bc95

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

.github/workflows/integration.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: Checkout code
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222

2323
- name: Setup PHP
2424
uses: shivammathur/setup-php@v2

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.4.0] - 2024-08-02
9+
10+
### Added
11+
12+
- Support for PHPUnit 10.
13+
14+
### Removed
15+
16+
- Support for PHP 7.2 and PHPUnit 9.
17+
818
## [1.3.0] - 2023-04-28
919

1020
### Added

src/StreamIntegrationTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ public function testGetContentsError()
315315

316316
fclose($resource);
317317

318-
$this->expectException(class_exists(\Throwable::class) ? \Throwable::class : \RuntimeException::class);
318+
$this->expectException(interface_exists(\Throwable::class) ? \Throwable::class : \RuntimeException::class);
319319
$stream->getContents();
320320
}
321321
}

0 commit comments

Comments
 (0)