diff --git a/.version b/.version index 831446cb..91ff5727 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -5.1.0 +5.2.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index 78eb1241..de6d48d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Change Log +## [5.2.0](https://github.com/auth0/wp-auth0/tree/5.1.0) (2023-12-11) + +### Added + +- feat(SDK-4734): Implement support for Back-Channel Logout [\#882](https://github.com/auth0/wordpress/pull/882) ([evansims](https://github.com/evansims)) + +> **Note** +> ยน To use this feature, an Auth0 tenant must have support for it enabled. + ## [5.1.0](https://github.com/auth0/wp-auth0/tree/5.1.0) (2023-07-24) ### Added diff --git a/wpAuth0.php b/wpAuth0.php index a9fadec8..61d12519 100644 --- a/wpAuth0.php +++ b/wpAuth0.php @@ -4,11 +4,11 @@ * Plugin Name: Auth0 * Plugin URL: https://github.com/auth0/wordpress * Description: Supercharge your WordPress website with Auth0. Improve account security, add support for multifactor, enable social, passwordless and enterprise connections, and much more. - * Version: 5.1.0 + * Version: 5.2.0 * Requires at least: 6.0 - * Tested up to: 6.3 - * Stable tag: 5.1.0 - * Requires PHP: 8.0 + * Tested up to: 6.4 + * Stable tag: 5.2.0 + * Requires PHP: 8.1 * Author: Auth0 * Author URI: https://auth0.com * License: MIT @@ -23,7 +23,7 @@ use Auth0\SDK\Auth0 as Sdk; use Auth0\SDK\Configuration\SdkConfiguration as Configuration; -define('WP_AUTH0_VERSION', '5.1.0'); +define('WP_AUTH0_VERSION', '5.2.0'); // Require loading through WordPress if (! defined('ABSPATH')) {