Skip to content

Commit

Permalink
prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
dbu committed Aug 2, 2024
1 parent 53f658e commit 7e7bc95
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.4.0] - 2024-08-02

### Added

- Support for PHPUnit 10.

### Removed

- Support for PHP 7.2 and PHPUnit 9.

## [1.3.0] - 2023-04-28

### Added
Expand Down
2 changes: 1 addition & 1 deletion src/StreamIntegrationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ public function testGetContentsError()

fclose($resource);

$this->expectException(class_exists(\Throwable::class) ? \Throwable::class : \RuntimeException::class);
$this->expectException(interface_exists(\Throwable::class) ? \Throwable::class : \RuntimeException::class);
$stream->getContents();
}
}

0 comments on commit 7e7bc95

Please sign in to comment.