diff --git a/CHANGELOG.md b/CHANGELOG.md index 435a3960..ded09a61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [4.0.0-rc] +### Added +* Added #575 support for `monolog/monolog` v3 by @danielmorell in #602 +### Changed +* Updated the object serialization logic by @danielmorell in #605 +### Removed +* Removed the `Config::getAllowedCircularReferenceTypes()` method by @danielmorell in #603 +* Removed the `Serializable` deprecation warning by @danielmorell in #605 +### Fixed +* Fixed #590 PHP 8.2 deprecated dynamic property creation by @danielmorell in #606 + ## [4.0.0-beta] ### 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 aa8fd5bd..92875f41 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-beta"; + const VERSION = "4.0.0-rc"; use UtilitiesTrait;