From 72c93bdd98b54da09208047552633b04b00f470f Mon Sep 17 00:00:00 2001 From: Vladimir Bryzgalov Date: Sun, 17 May 2026 12:20:49 +0500 Subject: [PATCH] feat(wpmc S7): bump version to 1.0.0 + Tested up to 6.9 Co-Authored-By: Claude Opus 4.7 --- wp-multi-city.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/wp-multi-city.php b/wp-multi-city.php index 33c4db1..48a06f0 100644 --- a/wp-multi-city.php +++ b/wp-multi-city.php @@ -2,10 +2,11 @@ /** * Plugin Name: WP Multi City * Description: Мультигородская подсистема: taxonomy town, шорткоды для подстановки по городу, роутер /{city}/{path}/, page-clones по городам. - * Version: 0.1.0 + * Version: 1.0.0 * Author: Vladimir Bryzgalov * Requires PHP: 8.0 * Requires at least: 6.0 + * Tested up to: 6.9 * License: GPLv2 or later * Text Domain: wp-multi-city */ @@ -17,7 +18,7 @@ if (!defined('ABSPATH')) exit; defined('WPMC_PLUGIN_FILE') || define('WPMC_PLUGIN_FILE', __FILE__); defined('WPMC_PLUGIN_DIR') || define('WPMC_PLUGIN_DIR', plugin_dir_path(__FILE__)); defined('WPMC_PLUGIN_URL') || define('WPMC_PLUGIN_URL', plugin_dir_url(__FILE__)); -defined('WPMC_VERSION') || define('WPMC_VERSION', '0.1.0'); +defined('WPMC_VERSION') || define('WPMC_VERSION', '1.0.0'); require_once WPMC_PLUGIN_DIR . 'includes/class-plugin.php'; \WPMultiCity\Plugin::register_autoloader();