diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d631df1..15de5556 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [4.1.0-beta] - 2024-03-01 +### Added +* Added support for Telemetry by @danielmorell in #634. +### Fixed +* Fixed #480 IPv6 could not be resolved by curl sender by @danielmorell in #635. + ## [4.0.2] - 2023-12-22 ### Fixed * Fixed unable to to define custom scrubber by @zinkovskiy in #554. diff --git a/src/Payload/Notifier.php b/src/Payload/Notifier.php index fca541ef..c122715d 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.2"; + const VERSION = "4.1.0-beta"; use UtilitiesTrait;