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 Oct 28, 2019
1 parent 2c532d6 commit 27ae908
Showing 4 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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.0.3' );
define( 'WP_SENTRY_VERSION', 'v3.0.4' );
```

(Optionally) define an environment of your site. Defaults to `unspecified`.
7 changes: 6 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
@@ -48,7 +48,7 @@ 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.0.3' );`
`define( 'WP_SENTRY_VERSION', 'v3.0.4' );`

(Optionally) define an environment of your site. Defaults to `unspecified`.

@@ -60,6 +60,11 @@ This plugin provides filters to plugin/theme developers.
For more information have a look at the README.md file: https://github.com/stayallive/wp-sentry/blob/master/README.md#filters.

== Changelog ==
= 3.0.4 =

- Fixed error when `WP_SENTRY_VERSION` is not defined and theme version returns `false`.
- Update PHP SDK to version 2.2.2

= 3.0.3 =

- Use the ABSPATH constant as default project root.
2 changes: 1 addition & 1 deletion src/class-wp-sentry-version.php
Original file line number Diff line number Diff line change
@@ -5,5 +5,5 @@
*/
final class WP_Sentry_Version {
public const SDK_IDENTIFIER = 'sentry.php.wp-sentry-integration';
public const SDK_VERSION = '3.0.3';
public const SDK_VERSION = '3.0.4';
}
2 changes: 1 addition & 1 deletion wp-sentry.php
Original file line number Diff line number Diff line change
@@ -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.0.3
* Version: 3.0.4
* Author: Alex Bouma
* Author URI: https://alex.bouma.dev
* License: MIT

0 comments on commit 27ae908

Please sign in to comment.