From e60a037ebd9d33edad49957da2d40a8fca90ffad Mon Sep 17 00:00:00 2001 From: Daniel Morell Date: Thu, 23 Feb 2023 10:13:05 -0600 Subject: [PATCH] Bumped version to v4.0.0-rc and added changelog entry --- CHANGELOG.md | 11 +++++++++++ src/Payload/Notifier.php | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) 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;