This commit is contained in:
Javier Casares 2026-08-12 14:28:16 +00:00
commit 65a00cf6ab
8 changed files with 45 additions and 15 deletions

View file

@ -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.48.5 clean
* wp-compat: 0 errors against WP 4.7
= 0.1.2 =
_Release date: 2026-08-12_

View file

@ -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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\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"

View file

@ -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_

View file

@ -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__ ) );

2
vendor/autoload.php vendored
View file

@ -19,4 +19,4 @@ if (PHP_VERSION_ID < 50600) {
require_once __DIR__ . '/composer/autoload_real.php';
return ComposerAutoloaderInit524294019242a62eec66c035ad18b361::getLoader();
return ComposerAutoloaderInit21193cc5ee16adfbe1fcd1cc267e45ef::getLoader();

View file

@ -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);

View file

@ -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);
}

View file

@ -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) {