From 70930927eb1ad19a1aa753482a7c3123442e6f97 Mon Sep 17 00:00:00 2001 From: Alex Bouma Date: Fri, 12 Jun 2020 20:42:59 +0200 Subject: [PATCH] Version bump and release note updates --- README.md | 2 +- readme.txt | 13 +++++++++---- src/class-wp-sentry-version.php | 2 +- wp-sentry.php | 2 +- 4 files changed, 12 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 00277d0..7e290b0 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ define( 'WP_SENTRY_PUBLIC_DSN', 'JS_DSN' ); (Optionally) define a version of your site; by default the theme version will be used. This is used for tracking at which version of your site the error occurred. When combined with release tracking this is a very powerful feature. ```php -define( 'WP_SENTRY_VERSION', 'v3.6.0' ); +define( 'WP_SENTRY_VERSION', 'v3.7.0' ); ``` (Optionally) define an environment of your site. Defaults to `unspecified`. diff --git a/readme.txt b/readme.txt index 07c14c9..3b2ab98 100644 --- a/readme.txt +++ b/readme.txt @@ -15,14 +15,14 @@ This plugin can report PHP errors (optionally) and JavaScript errors (optionally It will auto detect authenticated users and add context where possible. All context/tags can be adjusted/expanded using filters. -_For more information and documentation have a look at the [README.md](https://github.com/stayallive/wp-sentry/blob/v3.6.0/README.md) file._ +_For more information and documentation have a look at the [README.md](https://github.com/stayallive/wp-sentry/blob/v3.7.0/README.md) file._ == Installation == 1. Install this plugin by cloning or copying this repository to your `wp-contents/plugins` folder 2. Configure your DSN as explained below 2. Activate the plugin through the WordPress admin interface -_For more information and documentation have a look at the [README.md](https://github.com/stayallive/wp-sentry/blob/v3.6.0/README.md) file._ +_For more information and documentation have a look at the [README.md](https://github.com/stayallive/wp-sentry/blob/v3.7.0/README.md) file._ **Note:** this plugin does not do anything by default and has only a admin interface to test the integration. A Sentry DSN must be configured in your `wp-config.php`. @@ -52,15 +52,20 @@ When enabled the current logged in user and IP address will be added to the even (Optionally) define a version of your site; by default the theme version will be used. This is used for tracking at which version of your site the error occurred. When combined with release tracking this is a very powerful feature. -`define( 'WP_SENTRY_VERSION', 'v3.6.0' );` +`define( 'WP_SENTRY_VERSION', 'v3.7.0' );` (Optionally) define an environment of your site. Defaults to `unspecified`. `define( 'WP_SENTRY_ENV', 'production' );` -_For more information and documentation have a look at the [README.md](https://github.com/stayallive/wp-sentry/blob/v3.6.0/README.md) file._ +_For more information and documentation have a look at the [README.md](https://github.com/stayallive/wp-sentry/blob/v3.7.0/README.md) file._ == Changelog == += 3.7.0 = + +- Update PHP SDK to version 2.4.0 +- Update Sentry Browser to version 5.17.0 + = 3.6.0 = - Update Sentry Browser to version 5.15.5 diff --git a/src/class-wp-sentry-version.php b/src/class-wp-sentry-version.php index 8efb905..e4f526f 100644 --- a/src/class-wp-sentry-version.php +++ b/src/class-wp-sentry-version.php @@ -5,5 +5,5 @@ */ final class WP_Sentry_Version { public const SDK_IDENTIFIER = 'sentry.php.wp-sentry-integration'; - public const SDK_VERSION = '3.6.0'; + public const SDK_VERSION = '3.7.0'; } diff --git a/wp-sentry.php b/wp-sentry.php index f112b24..7bbc3eb 100644 --- a/wp-sentry.php +++ b/wp-sentry.php @@ -4,7 +4,7 @@ * Plugin Name: WordPress Sentry * Plugin URI: https://github.com/stayallive/wp-sentry * Description: A (unofficial) WordPress plugin to report PHP and JavaScript errors to Sentry. - * Version: 3.6.0 + * Version: 3.7.0 * Author: Alex Bouma * Author URI: https://alex.bouma.dev * License: MIT