Releases: sabre-io/event
Releases · sabre-io/event
Release 6.0.0
6.0.0 (2022-08-29)
- #96 Minor fixes to examples, tests and comments (@phil-davis)
- #97 PHP min version 7.4 (@phil-davis)
Major version 6 implements type declarations for input parameters, function returns, variables etc. It supports PHP 7.4 and PHP 8. When you upgrade to major version 6, if you extend classes etc., then you will need to make similar type declarations in your code.
Release 5.1.4
5.1.4 (2021-11-04)
- #93 version bump that was missed in 5.1.3 (@phil-davis)
Release 5.1.3
Release 5.1.3 (2021-11-04)
- #88 Pass null to $microseconds for null $seconds ( @TysonAndre )
Release 5.1.2
5.1.2 (2020-10-03)
- #82: Added testing on PHP 8.0 (@phil-davis)
5.1.1
5.1.1 (2020-09-19)
- declare experimental php8 support (@TysonAndre)
- incorporated psalm types (@staabm)
- updated build (@phil-davis)
5.1.0
5.1.0 (2020-01-31)
- Added support for PHP 7.4, dropped support for PHP 7.0 (@phil-davis)
- #49: Updated testsuite for phpunit8, added phpstan coverage (@phil-davis, @DeepDiver1975)
5.0.3
5.0.2
5.0.1
5.0.0
- #42: The
coroutine
function now supportsreturn
in the passed generator
function. This allows you to more generally return a value. This is a BC
break as this is a feature that was only made possible with PHP 7, and
before the coroutine function would only ever return the last thing that
was yielded. If you depended on that feature, replace your lastyield
with
areturn
.