diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..f03671e --- /dev/null +++ b/composer.json @@ -0,0 +1,30 @@ +{ + "name": "horizontes/wc-fvc", + "type": "wordpress-plugin", + "description": "Adiciona cálculo de frete à página de produto do WooCommerce.", + "keywords": [ + "plugin", + "wordpress" + ], + "license": "MIT", + "authors": [ + { + "name": "Guilherme Capanema", + "email": "guilherme@horizontes.info" + } + ], + "require": { + "php": "^7.2", + "ramsey/uuid": "^3.8" + }, + "config": { + "preferred-install": "dist" + }, + "extra": { + "branch-alias": { + "dev-master": "1.2-dev" + } + }, + "minimum-stability": "dev", + "prefer-stable": true +} diff --git a/wc-fvc.php b/wc-fvc.php index e115b1f..0fc5805 100755 --- a/wc-fvc.php +++ b/wc-fvc.php @@ -14,9 +14,9 @@ * * @wordpress-plugin * Plugin Name: WooCommerce Frete via CEP - * Plugin URI: https://horizontes.info/plugins/wcfvc - * Description: This is a short description of what the plugin does. It's displayed in the WordPress admin area. - * Version: 1.0.0 + * Plugin URI: https://horizontes.info + * Description: Adiciona cálculo de frete à página de produto do WooCommerce. + * Version: 1.1.0 * Author: Horizontes Coop. * Author URI: https://horizontes.info * License: GPL-2.0+ @@ -35,7 +35,7 @@ if ( ! defined( 'WPINC' ) ) { * Start at version 1.0.0 and use SemVer - https://semver.org * Rename this for your plugin and update it as you release new versions. */ -define( 'WC_FVC_VERSION', '1.0.0' ); +define( 'WC_FVC_VERSION', '1.1.0' ); /** * The code that runs during plugin activation.