diff --git a/changelog.md b/changelog.md index 86871ff..3e92c2e 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,14 @@ # OpenId Connect Generic Changelog +**3.3.0** + +* Fix: @pjeby - Handle multiple user sessions better by using the `WP_Session_Tokens` object. Predecessor to fixes for multiple other issues: #49, #50, #51 + +**3.2.1** + +* Bug fix: @svenvanhal - Exit after issuing redirect. Fixes #46 + **3.2.0** * Feature: @robbiepaul - trigger core action `wp_login` when user is logged in through this plugin diff --git a/openid-connect-generic.php b/openid-connect-generic.php index 104d711..7ac9493 100644 --- a/openid-connect-generic.php +++ b/openid-connect-generic.php @@ -3,7 +3,7 @@ Plugin Name: OpenID Connect - Generic Client Plugin URI: https://github.com/daggerhart/openid-connect-generic Description: Connect to an OpenID Connect identity provider with Authorization Code Flow -Version: 3.2.1 +Version: 3.3.0 Author: daggerhart Author URI: http://www.daggerhart.com License: GPLv2 Copyright (c) 2015 daggerhart @@ -41,7 +41,7 @@ Notes class OpenID_Connect_Generic { // plugin version - const VERSION = '3.2.1'; + const VERSION = '3.3.0'; // plugin settings private $settings; diff --git a/readme.md b/readme.md index 39fe473..a65e266 100644 --- a/readme.md +++ b/readme.md @@ -16,10 +16,6 @@ Much of the documentation can be found on the Settings > OpenID Connect Generic Originally based on the plugin provided by shirounagi - https://wordpress.org/plugins/generic-openid-connect/ -#### Requirements - -* PHP 5.4+ with the OpenSSL extensions enabled (Defuse encryption library) - ### Installation 1. Upload to the `/wp-content/plugins/` directory diff --git a/readme.txt b/readme.txt index f893e76..0441e15 100644 --- a/readme.txt +++ b/readme.txt @@ -22,9 +22,6 @@ Much of the documentation can be found on the Settings > OpenID Connect Generic Originally based on the plugin provided by shirounagi - https://wordpress.org/plugins/generic-openid-connect/ - but has been completely rewritten. -=== Requirements === - -* Requires PHP 5.4+ with the OpenSSL extensions enabled (Defuse encryption library) == Installation ==