From 7574c2b79d00d8193a3ede04bb39654fdd88bac9 Mon Sep 17 00:00:00 2001 From: Darcy Date: Fri, 2 Jun 2023 14:44:29 +1200 Subject: [PATCH] Version bump/release (#158) --- README.md | 1 + src/Raygun4php/RaygunClientMessage.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 56e3c85..7b9311a 100644 --- a/README.md +++ b/README.md @@ -342,6 +342,7 @@ function ($errno, $errstr, $errfile, $errline) use ($raygunClient) { See the [Error Control Operators section on PHP.net](http://php.net/manual/en/language.operators.errorcontrol.php) for more information. ## Changelog +- 2.3.2: Fix Don't save a null value with setcookie() - 2.3.1: Use iconv to convert from ISO-8859-1 instead of utf8_encode - 2.3.0: Support newer versions of psr/log - 2.2.1: SetUser method now supports numeric data types for 'user' parameter diff --git a/src/Raygun4php/RaygunClientMessage.php b/src/Raygun4php/RaygunClientMessage.php index 5fa1a23..485bdb2 100644 --- a/src/Raygun4php/RaygunClientMessage.php +++ b/src/Raygun4php/RaygunClientMessage.php @@ -11,7 +11,7 @@ class RaygunClientMessage public function __construct() { $this->Name = "Raygun4php"; - $this->Version = "2.3.1"; + $this->Version = "2.3.2"; $this->ClientUrl = "https://github.com/MindscapeHQ/raygun4php"; } }