From e73b243c19394d94e85d7cf6b0cc9ce802f203bd Mon Sep 17 00:00:00 2001 From: Gary Jones Date: Tue, 18 May 2021 20:33:44 +0100 Subject: [PATCH] 1.3.1 --- CHANGELOG.md | 5 +++++ README.md | 4 ++-- rewrite-rules-inspector.php | 4 ++-- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fc9b3b1..28408a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ 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.3.1] - 2021-05-18 +- Fix WordPress.org banner image filename. +- Load text domain, to allow translations. + ## [1.3.0] - 2021-05-18 - Add the count of missing rules. - Add license file, changelog, .editorconfig file, PHPCS config file, and GitHub Action to deploy to WordPress.org. @@ -34,6 +38,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.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 [1.2]: https://github.com/Automattic/Rewrite-Rules-Inspector/compare/1.1...1.2 diff --git a/README.md b/README.md index 8182a28..8ef1398 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ # Rewrite Rules Inspector -Stable tag: 1.3.0 +Stable tag: 1.3.1 Requires at least: 3.1 Tested up to: 5.7 Requires PHP: 5.6 License: GPLv2 or later Tags: rewrite rules, tools -Contributors: danielbachhuber, automattic, tmoorewp +Contributors: danielbachhuber, automattic, tmoorewp, GaryJ A simple admin tool for inspecting rewrite rules. diff --git a/rewrite-rules-inspector.php b/rewrite-rules-inspector.php index 768514a..2421fac 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.0 + * Version: 1.3.1 * Author: Automattic, Daniel Bachhuber * Author URI: https://automattic.com/ * Text Domain: rewrite-rules-inspector @@ -22,7 +22,7 @@ * Requires WP: 3.1.0 */ -define( 'REWRITE_RULES_INSPECTOR_VERSION', '1.3.0' ); // Unused for now. +define( 'REWRITE_RULES_INSPECTOR_VERSION', '1.3.1' ); // Unused for now. define( 'REWRITE_RULES_INSPECTOR_FILE_PATH', plugin_basename( __FILE__ ) ); require __DIR__ . '/src/class-rewrite-rules-inspector.php';