diff --git a/changelog.txt b/changelog.txt index edfeebc..c8372af 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,29 @@ == Changelog == += 0.1.3 = + +_Release date: 2026-08-12_ + +**Changed** + +* Version bumped 0.1.2 → 0.1.3. +* `composer.json` PHP requirement updated from `>=8.4` to `>=7.4` to match the real PHPCompatibility scan floor and the plugin header. +* `composer.lock` regenerated. +* `.pot` file regenerated for v0.1.3. + +**Compatibility** + +* WordPress: 4.7 - 7.1 +* PHP: 7.4 - 8.5 + +**Tests** + +* PHP Coding Standards: PHP_CodeSniffer 3.13.6 +* WordPress Coding Standards: WPCS 3.4.1 +* PHPStan: level 9, 0 errors +* PHPCompatibility: 7.4–8.5 clean +* wp-compat: 0 errors against WP 4.7 + = 0.1.2 = _Release date: 2026-08-12_ diff --git a/languages/robotstxt-manager.pot b/languages/robotstxt-manager.pot index 27bb85b..fb4c7cb 100644 --- a/languages/robotstxt-manager.pot +++ b/languages/robotstxt-manager.pot @@ -2,14 +2,14 @@ # This file is distributed under the GPL-3.0-or-later. msgid "" msgstr "" -"Project-Id-Version: Manager (by ROBOTSTXT) 0.1.2\n" +"Project-Id-Version: Manager (by ROBOTSTXT) 0.1.3\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/robotstxt-manager\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2026-08-12T14:02:07+00:00\n" +"POT-Creation-Date: 2026-08-12T14:17:17+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: robotstxt-manager\n" diff --git a/readme.txt b/readme.txt index d14c38c..dffe146 100644 --- a/readme.txt +++ b/readme.txt @@ -3,9 +3,9 @@ Contributors: javiercasares, robotstxt Tags: dashboard, catalog, updates, subscriptions, management Requires at least: 4.7 Tested up to: 7.1 -Stable tag: 0.1.2 +Stable tag: 0.1.3 Requires PHP: 7.4 -Version: 0.1.2 +Version: 0.1.3 License: GPL-3.0-or-later License URI: https://www.gnu.org/licenses/gpl-3.0.txt @@ -88,6 +88,12 @@ Encrypted at rest using AES-256-CBC with a key derived from your site's WordPres == Changelog == += 0.1.3 = + +_Release date: 2026-08-12_ + +* Composer PHP requirement aligned to scan floor (>=7.4). + = 0.1.2 = _Release date: 2026-08-12_ diff --git a/robotstxt-manager.php b/robotstxt-manager.php index 5668e8e..03827d5 100644 --- a/robotstxt-manager.php +++ b/robotstxt-manager.php @@ -3,7 +3,7 @@ * Plugin Name: Manager (by ROBOTSTXT) * Plugin URI: https://git.robotstxt.es/ROBOTSTXT/robotstxt-manager * Description: Client-side dashboard for the ROBOTSTXT plugin ecosystem. Lists the catalog from a remote Plugins Core install, resolves local install/update state, and surfaces subscription health. Phase 1: read-only catalog view. - * Version: 0.1.2 + * Version: 0.1.3 * Requires at least: 4.7 * Requires PHP: 7.4 * Author: ROBOTSTXT @@ -21,7 +21,7 @@ if ( ! defined( 'ABSPATH' ) ) { } /** Plugin version. */ -define( 'ROBOTSTXT_MANAGER_VERSION', '0.1.2' ); +define( 'ROBOTSTXT_MANAGER_VERSION', '0.1.3' ); /** Absolute path to the plugin directory, with trailing slash. */ define( 'ROBOTSTXT_MANAGER_DIR', plugin_dir_path( __FILE__ ) ); diff --git a/vendor/autoload.php b/vendor/autoload.php index 6732392..30d2faf 100644 --- a/vendor/autoload.php +++ b/vendor/autoload.php @@ -19,4 +19,4 @@ if (PHP_VERSION_ID < 50600) { require_once __DIR__ . '/composer/autoload_real.php'; -return ComposerAutoloaderInit524294019242a62eec66c035ad18b361::getLoader(); +return ComposerAutoloaderInit21193cc5ee16adfbe1fcd1cc267e45ef::getLoader(); diff --git a/vendor/composer/autoload_real.php b/vendor/composer/autoload_real.php index 0f93be3..d53f30b 100644 --- a/vendor/composer/autoload_real.php +++ b/vendor/composer/autoload_real.php @@ -2,7 +2,7 @@ // autoload_real.php @generated by Composer -class ComposerAutoloaderInit524294019242a62eec66c035ad18b361 +class ComposerAutoloaderInit21193cc5ee16adfbe1fcd1cc267e45ef { private static $loader; @@ -24,12 +24,12 @@ class ComposerAutoloaderInit524294019242a62eec66c035ad18b361 require __DIR__ . '/platform_check.php'; - spl_autoload_register(array('ComposerAutoloaderInit524294019242a62eec66c035ad18b361', 'loadClassLoader'), true, true); + spl_autoload_register(array('ComposerAutoloaderInit21193cc5ee16adfbe1fcd1cc267e45ef', 'loadClassLoader'), true, true); self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); - spl_autoload_unregister(array('ComposerAutoloaderInit524294019242a62eec66c035ad18b361', 'loadClassLoader')); + spl_autoload_unregister(array('ComposerAutoloaderInit21193cc5ee16adfbe1fcd1cc267e45ef', 'loadClassLoader')); require __DIR__ . '/autoload_static.php'; - call_user_func(\Composer\Autoload\ComposerStaticInit524294019242a62eec66c035ad18b361::getInitializer($loader)); + call_user_func(\Composer\Autoload\ComposerStaticInit21193cc5ee16adfbe1fcd1cc267e45ef::getInitializer($loader)); $loader->register(true); diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index 2abf889..a22a3d0 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -4,7 +4,7 @@ namespace Composer\Autoload; -class ComposerStaticInit524294019242a62eec66c035ad18b361 +class ComposerStaticInit21193cc5ee16adfbe1fcd1cc267e45ef { public static $classMap = array ( 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php', @@ -20,7 +20,7 @@ class ComposerStaticInit524294019242a62eec66c035ad18b361 public static function getInitializer(ClassLoader $loader) { return \Closure::bind(function () use ($loader) { - $loader->classMap = ComposerStaticInit524294019242a62eec66c035ad18b361::$classMap; + $loader->classMap = ComposerStaticInit21193cc5ee16adfbe1fcd1cc267e45ef::$classMap; }, null, ClassLoader::class); } diff --git a/vendor/composer/platform_check.php b/vendor/composer/platform_check.php index 5ece5bc..d2225c7 100644 --- a/vendor/composer/platform_check.php +++ b/vendor/composer/platform_check.php @@ -4,8 +4,8 @@ $issues = array(); -if (!(PHP_VERSION_ID >= 80400)) { - $issues[] = 'Your Composer dependencies require a PHP version ">= 8.4.0". You are running ' . PHP_VERSION . '.'; +if (!(PHP_VERSION_ID >= 70400)) { + $issues[] = 'Your Composer dependencies require a PHP version ">= 7.4.0". You are running ' . PHP_VERSION . '.'; } if ($issues) {