From d85726eddaeb1f638aae803ba513ccca7e81773e Mon Sep 17 00:00:00 2001 From: Daniel Morell Date: Fri, 28 Apr 2023 14:51:58 -0500 Subject: [PATCH] Release v4.0.1 and CHANGELOG.md entries --- CHANGELOG.md | 18 ++++++++++++++++++ src/Payload/Notifier.php | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dede4346..96d24dca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [4.0.1] - 2023-04-28 +### Added +* Added response status code to verbose log message fixing #613 by + @danielmorell in #614. +### Fixed +* Fixed #617 `RollbarLogger:log()` not compatible with psr/log 1 by + @danielmorell in #623. +### Maintenance +* Added missing CI workflow for v3.x by @danielmorell in #616. +* Added Phpunit 10 result folder to .gitignore by @Chris53897 in #625. +* Updated test dependencies to fix generated mock class type annotation error by + @danielmorell in #627. +* Fixed duplicate Psalm config and silenced unnecessary warnings by @Chris53897 + in #622. +* Fixed test helper method `ArrayLogger:log()` psr/log 1 compatability by + @danielmorell in #626. +* Fixed the CI status badge in the README.md file. by @danielmorell in #628. + ## [4.0.0] - 2023-03-20 ### Added * PHP 8 language level mitigations, add typehints by @Chris8934 in #569. diff --git a/src/Payload/Notifier.php b/src/Payload/Notifier.php index cc0ceb57..53532955 100644 --- a/src/Payload/Notifier.php +++ b/src/Payload/Notifier.php @@ -8,7 +8,7 @@ class Notifier implements SerializerInterface { const NAME = "rollbar-php"; - const VERSION = "4.0.0"; + const VERSION = "4.0.1"; use UtilitiesTrait;