incrementing to 3.3.x, updating readmes and changelog

isekai
Jonathan Daggerhart 7 years ago
parent e02e455965
commit 6f077c932a

@ -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

@ -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;

@ -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

@ -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 ==

Loading…
Cancel
Save