From a7bcd8a587bae3118560a8556bda7352bf570bcc Mon Sep 17 00:00:00 2001 From: Samuel Holt Date: Fri, 5 Mar 2021 16:48:55 +1300 Subject: [PATCH] Bump version to 2.0.2, update composer file --- README.md | 3 ++- composer.json | 2 +- src/Raygun4php/RaygunClientMessage.php | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8d58937..a4eacfa 100644 --- a/README.md +++ b/README.md @@ -337,7 +337,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.0.1: Fix fixes for CLI use, PHP 7.4 deprecation warning in RayrunMessage JSON encoding +- 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 - Increased minimum PHP version to 7.1 - Added PSR-4 autoloader diff --git a/composer.json b/composer.json index 531b76b..3ec2a4a 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "mindscape/raygun4php", "type": "library", - "description": "Raygun.io client for sending errors and exceptions automatically.", + "description": "Raygun.com client for sending errors and exceptions automatically.", "keywords": [ "raygun", "errors", diff --git a/src/Raygun4php/RaygunClientMessage.php b/src/Raygun4php/RaygunClientMessage.php index 0078273..00782ea 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.0"; + $this->Version = "2.0.2"; $this->ClientUrl = "https://github.com/MindscapeHQ/raygun4php"; } }