Skip to content

Commit

Permalink
Version bump and release note updates
Browse files Browse the repository at this point in the history
  • Loading branch information
stayallive committed Jul 19, 2023
1 parent 1ad621b commit 766f9c1
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ define( 'WP_SENTRY_BROWSER_USE_ES5_BUNDLES', true );
(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', 'v6.22.0' );
define( 'WP_SENTRY_VERSION', 'v6.22.1' );
```

(Optionally) define an environment of your site. Defaults to `unspecified`.
Expand Down
12 changes: 8 additions & 4 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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/v6.22.0/README.md) file._
_For more information and documentation have a look at the [README.md](https://github.com/stayallive/wp-sentry/blob/v6.22.1/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/v6.22.0/README.md) file._
_For more information and documentation have a look at the [README.md](https://github.com/stayallive/wp-sentry/blob/v6.22.1/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`.

Expand Down Expand Up @@ -56,15 +56,19 @@ 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', 'v6.22.0' );`
`define( 'WP_SENTRY_VERSION', 'v6.22.1' );`

(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/v6.22.0/README.md) file._
_For more information and documentation have a look at the [README.md](https://github.com/stayallive/wp-sentry/blob/v6.22.1/README.md) file._

== Changelog ==
= 6.22.1 =

* Update Sentry Browser to version 7.59.3

= 6.22.0 =

* Update Sentry Browser to version 7.59.1
Expand Down
2 changes: 1 addition & 1 deletion src/class-wp-sentry-version.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
*/
final class WP_Sentry_Version {
public const SDK_IDENTIFIER = 'sentry.php.wordpress';
public const SDK_VERSION = '6.22.0';
public const SDK_VERSION = '6.22.1';
}
2 changes: 1 addition & 1 deletion wp-sentry.php
Original file line number Diff line number Diff line change
Expand Up @@ -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: 6.22.0
* Version: 6.22.1
* Author: Alex Bouma
* Author URI: https://alex.bouma.dev
* License: MIT
Expand Down

0 comments on commit 766f9c1

Please sign in to comment.