diff --git a/CHANGELOG-5.x.md b/CHANGELOG-5.x.md index 6e25761db5..ba2aa54d13 100644 --- a/CHANGELOG-5.x.md +++ b/CHANGELOG-5.x.md @@ -1,6 +1,11 @@ +#### 5.1.2 + +* Prevent unrelated error from being displayed if a scenario step has failed by @craig-mcmahon in #6743 +* Replace Laravel5 with Laravel module in module installation suggestion by @W0rma in #6742 + #### 5.1.1 -* Reimplement coverage:exclude option for PHPUnit 11 in #6739 +* Reimplemented coverage:exclude option for PHPUnit 11 in #6739 * Improved output of Bootstrap command by @ThomasLandauer in #6735 #### 5.1.0 diff --git a/src/Codeception/Codecept.php b/src/Codeception/Codecept.php index 5f7bc741d3..1018716693 100644 --- a/src/Codeception/Codecept.php +++ b/src/Codeception/Codecept.php @@ -36,7 +36,7 @@ class Codecept /** * @var string */ - public const VERSION = '5.1.1'; + public const VERSION = '5.1.2'; protected ResultAggregator $resultAggregator;