diff --git a/CHANGELOG.md b/CHANGELOG.md index cc5ec4b..efccd55 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## [2.4.0] - Unreleased +## [2.4.0] - 2023-04-14 ### Changed diff --git a/README.md b/README.md index ce60cfa..a9b476a 100644 --- a/README.md +++ b/README.md @@ -15,19 +15,11 @@ ## Intro HTTP client standard built on [PSR-7](http://www.php-fig.org/psr/psr-7/) HTTP -messages. The HTTPlug client interface is compatible with the official standard -for the HTTP client interface, [PSR-18](http://www.php-fig.org/psr/psr-18/). -HTTPlug adds an interface for asynchronous HTTP requests, which PSR-18 does not -cover. - -Since HTTPlug has already been widely adopted and a whole ecosystem has been -built around it, we will keep maintaining this package for the time being. -HTTPlug 2.0 and newer extend the PSR-18 interface to allow for a convenient -migration path. - -New client implementations and consumers should use the PSR-18 interfaces -directly. In the long term, we expect PSR-18 to completely replace the need -for HTTPlug. +messages. The HttpAsyncClient defines an asynchronous HTTP client for PHP. + +This package also provides a synchronous HttpClient interface with the same +method signature as the [PSR-18](http://www.php-fig.org/psr/psr-18/) client. +For synchronous requests, we recommend using PSR-18 directly. ## History