ver 1.0.1

This commit is contained in:
Leon 2020-12-05 16:56:34 +11:00
parent 095d4ea913
commit 6ee1bf0498
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
## WP2Static Netlify Add-on 1.0.1

- fix CLI command registration in PHP 8

## WP2Static Netlify Add-on 1.0

- don't attempt to deploy if addon not enabled in core

View file

@ -4,7 +4,7 @@
* Plugin Name: WP2Static Add-on: Netlify Deployment
* Plugin URI: https://wp2static.com
* Description: Netlify deployment add-on for WP2Static.
* Version: 1.0.1-dev
* Version: 1.0.1
* Author: Leon Stafford
* Author URI: https://ljs.dev
* License: Unlicense
@ -17,7 +17,7 @@ if ( ! defined( 'WPINC' ) ) {
}

define( 'WP2STATIC_NETLIFY_PATH', plugin_dir_path( __FILE__ ) );
define( 'WP2STATIC_NETLIFY_VERSION', '1.0.1-dev' );
define( 'WP2STATIC_NETLIFY_VERSION', '1.0.1' );

if ( file_exists( WP2STATIC_NETLIFY_PATH . 'vendor/autoload.php' ) ) {
require WP2STATIC_NETLIFY_PATH . 'vendor/autoload.php';