From 08fd53cd6ce08c391747ca07d6e8a20e66cdb4b9 Mon Sep 17 00:00:00 2001 From: Deacon <57920837+Deacon-McIntyre@users.noreply.github.com> Date: Mon, 6 Dec 2021 14:15:21 +1300 Subject: [PATCH] Bump version and add changelog entry for 2.1.0 --- README.md | 1 + src/Raygun4php/RaygunClientMessage.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7329d3f..7a9dfe3 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.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 - 2.0.1: Fixes for CLI use, PHP 7.4 deprecation warning in RaygunMessage JSON encoding - 2.0.0: New major version diff --git a/src/Raygun4php/RaygunClientMessage.php b/src/Raygun4php/RaygunClientMessage.php index 00782ea..32e4a30 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.0.2"; + $this->Version = "2.1.0"; $this->ClientUrl = "https://github.com/MindscapeHQ/raygun4php"; } }