diff --git a/README.md b/README.md index 38c56bc..fedaf58 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ **Contributors:** getpantheon, danielbachhuber, Outlandish Josh **Tags:** authentication, SAML, SimpleSAMLphp **Requires at least:** 4.4 -**Tested up to:** 4.7 -**Stable tag:** 0.1.0 +**Tested up to:** 4.7.3 +**Stable tag:** 0.2.0 **License:** GPLv2 or later **License URI:** http://www.gnu.org/licenses/gpl-2.0.html @@ -124,6 +124,30 @@ Once SimpleSAMLphp is installed and running on your server, you can configure th } add_filter( 'wp_saml_auth_option', 'wpsax_filter_option', 10, 2 ); +## WP-CLI Commands ## + +This plugin implements a variety of [WP-CLI](https://wp-cli.org) commands. All commands are grouped into the `wp saml-auth` namespace. + + $ wp help saml-auth + + NAME + + wp saml-auth + + DESCRIPTION + + Configure and manage the WP SAML Auth plugin. + + SYNOPSIS + + wp saml-auth + + SUBCOMMANDS + + scaffold-config Scaffold a configuration filter to customize WP SAML Auth usage. + +Use `wp help saml-auth ` to learn more about each command. + ## Contributing ## The best way to contribute to the development of this plugin is by participating on the GitHub project: @@ -162,6 +186,10 @@ There is no third step. Because SimpleSAMLphp loads WordPress, which has WP Nati ## Changelog ## -### 0.1.0 (April 18, 2016) ### +### 0.2.0 (March 7, 2017) ### +* Introduces `wp saml-auth scaffold-config`, a WP-CLI command to scaffold a configuration filter to customize WP SAML Auth usage. +* Redirects back to WordPress after SimpleSAMLPHP authentication. +* Variety of test suite improvements. +### 0.1.0 (April 18, 2016) ### * Initial release. diff --git a/readme.txt b/readme.txt index 14002c1..9247b9f 100644 --- a/readme.txt +++ b/readme.txt @@ -2,8 +2,8 @@ Contributors: getpantheon, danielbachhuber, Outlandish Josh Tags: authentication, SAML, SimpleSAMLphp Requires at least: 4.4 -Tested up to: 4.7 -Stable tag: 0.1.0 +Tested up to: 4.7.3 +Stable tag: 0.2.0 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -124,6 +124,30 @@ Once SimpleSAMLphp is installed and running on your server, you can configure th } add_filter( 'wp_saml_auth_option', 'wpsax_filter_option', 10, 2 ); +== WP-CLI Commands == + +This plugin implements a variety of [WP-CLI](https://wp-cli.org) commands. All commands are grouped into the `wp saml-auth` namespace. + + $ wp help saml-auth + + NAME + + wp saml-auth + + DESCRIPTION + + Configure and manage the WP SAML Auth plugin. + + SYNOPSIS + + wp saml-auth + + SUBCOMMANDS + + scaffold-config Scaffold a configuration filter to customize WP SAML Auth usage. + +Use `wp help saml-auth ` to learn more about each command. + == Contributing == The best way to contribute to the development of this plugin is by participating on the GitHub project: @@ -162,6 +186,10 @@ There is no third step. Because SimpleSAMLphp loads WordPress, which has WP Nati == Changelog == -= 0.1.0 (April 18, 2016) = += 0.2.0 (March 7, 2017) = +* Introduces `wp saml-auth scaffold-config`, a WP-CLI command to scaffold a configuration filter to customize WP SAML Auth usage. +* Redirects back to WordPress after SimpleSAMLPHP authentication. +* Variety of test suite improvements. += 0.1.0 (April 18, 2016) = * Initial release. diff --git a/wp-saml-auth.php b/wp-saml-auth.php index ccde881..aa83dd1 100644 --- a/wp-saml-auth.php +++ b/wp-saml-auth.php @@ -1,7 +1,7 @@