From d4dae749ba35039c4fabbc07d6733bff1846281b Mon Sep 17 00:00:00 2001 From: Gary Jones Date: Thu, 16 May 2024 18:46:19 +0200 Subject: [PATCH 1/2] 1.4.0: Add changelog --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 28408a0..ccabce0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.4.0] - 2024-05-21 +- Increase minimum PHP version to 7.4. +- Increase minimum WordPress version to 5.9. +- Forcibly delete rules cache on flush. +- Fix escaping of URL for the Reset button. + ## [1.3.1] - 2021-05-18 - Fix WordPress.org banner image filename. - Load text domain, to allow translations. @@ -38,6 +44,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Filter by different sources of rewrite rules. - An error message appears if rewrite rules are missing in the database. +[1.4.0]: https://github.com/Automattic/Rewrite-Rules-Inspector/compare/1.3.1...1.4.0 [1.3.1]: https://github.com/Automattic/Rewrite-Rules-Inspector/compare/1.3.0...1.3.1 [1.3.0]: https://github.com/Automattic/Rewrite-Rules-Inspector/compare/1.2.1...1.3.0 [1.2.1]: https://github.com/Automattic/Rewrite-Rules-Inspector/compare/1.2...1.2.1 From b17810fba2c9c04d2136ba6370c0be99be73aef8 Mon Sep 17 00:00:00 2001 From: Gary Jones Date: Fri, 17 May 2024 13:48:33 +0200 Subject: [PATCH 2/2] 1.4.0 --- README.md | 2 +- rewrite-rules-inspector.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2a95399..a18cc46 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Rewrite Rules Inspector -Stable tag: 1.3.1 +Stable tag: 1.4.0 Requires at least: 5.9 Tested up to: 6.5 Requires PHP: 7.4 diff --git a/rewrite-rules-inspector.php b/rewrite-rules-inspector.php index 1c461f5..3cedcf3 100644 --- a/rewrite-rules-inspector.php +++ b/rewrite-rules-inspector.php @@ -11,7 +11,7 @@ * Plugin Name: Rewrite Rules Inspector * Plugin URI: https://wordpress.org/plugins/rewrite-rules-inspector/ * Description: Simple WordPress admin tool for inspecting your rewrite rules. - * Version: 1.3.1 + * Version: 1.4.0 * Author: Automattic, Daniel Bachhuber * Author URI: https://automattic.com/ * Text Domain: rewrite-rules-inspector @@ -22,7 +22,7 @@ * Requires WP: 5.9.0 */ -define( 'REWRITE_RULES_INSPECTOR_VERSION', '1.3.1' ); // Unused for now. +define( 'REWRITE_RULES_INSPECTOR_VERSION', '1.4.0' ); // Unused for now. define( 'REWRITE_RULES_INSPECTOR_FILE_PATH', plugin_basename( __FILE__ ) ); require __DIR__ . '/src/class-rewrite-rules-inspector.php';