File tree 3 files changed +12
-2
lines changed
3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 18
18
19
19
steps :
20
20
- name : Checkout code
21
- uses : actions/checkout@v3
21
+ uses : actions/checkout@v4
22
22
23
23
- name : Setup PHP
24
24
uses : shivammathur/setup-php@v2
Original file line number Diff line number Diff line change @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
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
+
8
18
## [ 1.3.0] - 2023-04-28
9
19
10
20
### Added
Original file line number Diff line number Diff line change @@ -315,7 +315,7 @@ public function testGetContentsError()
315
315
316
316
fclose ($ resource );
317
317
318
- $ this ->expectException (class_exists (\Throwable::class) ? \Throwable::class : \RuntimeException::class);
318
+ $ this ->expectException (interface_exists (\Throwable::class) ? \Throwable::class : \RuntimeException::class);
319
319
$ stream ->getContents ();
320
320
}
321
321
}
You can’t perform that action at this time.
0 commit comments