Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.4.0 #42

Merged
merged 2 commits into from
May 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions rewrite-rules-inspector.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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';
Expand Down