diff --git a/README.md b/README.md index fa8f415..1179a1b 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.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 - 2.1.0: Allow client IP address to be filtered out, add configuration to filter out all POSTed form data - 2.0.2: Remove PHP 7.2 and replace with PHP 8.0 in Travis builds, fix JSON match assertion issue in unit tests diff --git a/src/Raygun4php/RaygunClientMessage.php b/src/Raygun4php/RaygunClientMessage.php index 4384e41..b31368a 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.1.1"; + $this->Version = "2.2.0"; $this->ClientUrl = "https://github.com/MindscapeHQ/raygun4php"; } }