Skip to content

Commit

Permalink
Merge pull request #42 from Automattic/release/1.4.0
Browse files Browse the repository at this point in the history
Release 1.4.0
  • Loading branch information
GaryJones committed May 21, 2024
2 parents 002085c + b17810f commit c639ddf
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
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

0 comments on commit c639ddf

Please sign in to comment.