diff --git a/application-passwords.php b/application-passwords.php index 4bfca8a..bd72db7 100644 --- a/application-passwords.php +++ b/application-passwords.php @@ -2,13 +2,13 @@ /** * Plugin Name: Application Passwords * Plugin URI: https://github.com/georgestephanis/application-passwords - * Description: A prototype framework to add application passwords to core. + * Description: Creates unique passwords for applications to authenticate users without revealing their main passwords. * Author: George Stephanis - * Version: 0.1-dev + * Version: 0.1.0 * Author URI: https://stephanis.info */ -define( 'APPLICATION_PASSWORDS_VERSION', '0.1-dev' ); +define( 'APPLICATION_PASSWORDS_VERSION', '0.1.0' ); /** * Include the application passwords system. diff --git a/composer.json b/composer.json index 656897c..106c29b 100644 --- a/composer.json +++ b/composer.json @@ -35,10 +35,10 @@ }, "scripts": { "lint-staged": [ - "DIFF_BASE=master SYNC_README_MD=0 ./vendor/xwp/wp-dev-lib/scripts/pre-commit" + "DEV_LIB_SKIP=phpunit DIFF_BASE=master SYNC_README_MD=0 ./vendor/xwp/wp-dev-lib/scripts/pre-commit" ], "lint-head": [ - "DIFF_BASE=master DIFF_HEAD=HEAD SYNC_README_MD=0 ./vendor/xwp/wp-dev-lib/scripts/pre-commit" + "DEV_LIB_SKIP=phpunit DIFF_BASE=master DIFF_HEAD=HEAD SYNC_README_MD=0 ./vendor/xwp/wp-dev-lib/scripts/pre-commit" ], "lint": [ "phpcs ." diff --git a/gruntfile.js b/gruntfile.js index 83e5702..6bd77e9 100644 --- a/gruntfile.js +++ b/gruntfile.js @@ -41,8 +41,10 @@ module.exports = function( grunt ) { assets_dir: 'assets', }, trunk: { - deploy_tag: false, - deploy_trunk: true, + options: { + deploy_tag: false, + deploy_trunk: true, + }, }, }, } );