diff --git a/README.md b/README.md index d285064..87ab089 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ **Tags:** authentication, SAML **Requires at least:** 4.4 **Tested up to:** 4.8 -**Stable tag:** 0.2.2 +**Stable tag:** 0.3.0 **License:** GPLv2 or later **License URI:** http://www.gnu.org/licenses/gpl-2.0.html @@ -251,6 +251,10 @@ There is no third step. Because SimpleSAMLphp loads WordPress, which has WP Nati ## Changelog ## +### 0.3.0 (June 29, 2017) ### +* Includes OneLogin's PHP SAML library for SAML auth without SimpleSAMLphp. See "Installation" for configuration instructions. +* Fixes handling of SAMLResponse when `permit_wp_login=true`. + ### 0.2.2 (May 24, 2017) ### * Introduces a `wp_saml_auth_login_strings` filter to permit login text strings to be filterable. * Introduces a `wp_saml_auth_pre_authentication` filter to allow authentication behavior to be adapted based on SAML response. diff --git a/readme.txt b/readme.txt index 35282e8..0397226 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: getpantheon, danielbachhuber, Outlandish Josh Tags: authentication, SAML Requires at least: 4.4 Tested up to: 4.8 -Stable tag: 0.2.2 +Stable tag: 0.3.0 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -251,6 +251,10 @@ There is no third step. Because SimpleSAMLphp loads WordPress, which has WP Nati == Changelog == += 0.3.0 (June 29, 2017) = +* Includes OneLogin's PHP SAML library for SAML auth without SimpleSAMLphp. See "Installation" for configuration instructions. +* Fixes handling of SAMLResponse when `permit_wp_login=true`. + = 0.2.2 (May 24, 2017) = * Introduces a `wp_saml_auth_login_strings` filter to permit login text strings to be filterable. * Introduces a `wp_saml_auth_pre_authentication` filter to allow authentication behavior to be adapted based on SAML response. diff --git a/wp-saml-auth.php b/wp-saml-auth.php index a04f4ad..dfe8190 100644 --- a/wp-saml-auth.php +++ b/wp-saml-auth.php @@ -1,7 +1,7 @@