diff --git a/Gruntfile.js b/Gruntfile.js index 5543018..b52b1b4 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -45,6 +45,7 @@ module.exports = function( grunt ) { grunt.loadNpmTasks( 'grunt-wp-i18n' ); grunt.loadNpmTasks( 'grunt-wp-readme-to-markdown' ); + grunt.registerTask( 'default', ['i18n', 'readme'] ); grunt.registerTask( 'i18n', ['addtextdomain', 'makepot'] ); grunt.registerTask( 'readme', ['wp_readme_to_markdown'] ); diff --git a/README.md b/README.md index e24464c..3dacfe1 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ **Contributors:** getpantheon, danielbachhuber, Outlandish Josh **Tags:** authentication, SAML **Requires at least:** 4.4 -**Tested up to:** 4.8 -**Stable tag:** 0.3.1 +**Tested up to:** 4.9 +**Stable tag:** 0.3.2 **License:** GPLv2 or later **License URI:** http://www.gnu.org/licenses/gpl-2.0.html @@ -251,6 +251,9 @@ There is no third step. Because SimpleSAMLphp loads WordPress, which has WP Nati ## Changelog ## +### 0.3.2 (November 9, 2017) ### +* Updates `onelogin/php-saml` dependency from v2.10.7 to v2.12.0 [[#90](https://github.com/pantheon-systems/wp-saml-auth/pull/90), [#99](https://github.com/pantheon-systems/wp-saml-auth/pull/99)]. + ### 0.3.1 (July 12, 2017) ### * Passes `$attributes` to `wp_saml_auth_insert_user` filter, so user creation behavior can be modified based on SAML response. diff --git a/readme.txt b/readme.txt index db3cfea..dfc956b 100644 --- a/readme.txt +++ b/readme.txt @@ -2,8 +2,8 @@ Contributors: getpantheon, danielbachhuber, Outlandish Josh Tags: authentication, SAML Requires at least: 4.4 -Tested up to: 4.8 -Stable tag: 0.3.1 +Tested up to: 4.9 +Stable tag: 0.3.2 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -251,6 +251,9 @@ There is no third step. Because SimpleSAMLphp loads WordPress, which has WP Nati == Changelog == += 0.3.2 (November 9, 2017) = +* Updates `onelogin/php-saml` dependency from v2.10.7 to v2.12.0 [[#90](https://github.com/pantheon-systems/wp-saml-auth/pull/90), [#99](https://github.com/pantheon-systems/wp-saml-auth/pull/99)]. + = 0.3.1 (July 12, 2017) = * Passes `$attributes` to `wp_saml_auth_insert_user` filter, so user creation behavior can be modified based on SAML response. diff --git a/wp-saml-auth.php b/wp-saml-auth.php index 4c0cf37..a386923 100644 --- a/wp-saml-auth.php +++ b/wp-saml-auth.php @@ -1,7 +1,7 @@