From 20e58da4da363a5b030dcde3142305c6b6592469 Mon Sep 17 00:00:00 2001 From: Jared Scholz Date: Wed, 22 Feb 2023 15:01:17 +1300 Subject: [PATCH] Bump version and update changelog --- README.md | 2 ++ src/Raygun4php/RaygunClientMessage.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7880778..56e3c85 100644 --- a/README.md +++ b/README.md @@ -342,6 +342,8 @@ 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.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 - 2.2.0: Capture the file and line number where the exception itself is thrown - 2.1.1: Fix namespace in Uuid library to prevent composer errors with mixed case package names diff --git a/src/Raygun4php/RaygunClientMessage.php b/src/Raygun4php/RaygunClientMessage.php index 2c7857d..5fa1a23 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.2.1"; + $this->Version = "2.3.1"; $this->ClientUrl = "https://github.com/MindscapeHQ/raygun4php"; } }