From 4200e5ff37b632fea6827c22c00ed6657f4ac4c6 Mon Sep 17 00:00:00 2001 From: Daniel Morell Date: Fri, 1 Mar 2024 15:31:53 -0600 Subject: [PATCH] Bumped version to v4.1.0-beta and updated CHANGELOG.md --- CHANGELOG.md | 6 ++++++ src/Payload/Notifier.php | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) 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;