diff --git a/CHANGELOG.md b/CHANGELOG.md index ec166b9..873c760 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file, per [the Ke ## [Unreleased] - TBD +## [1.0.1] - 2022-02-17 +### Fixed +- Ensure we support WordPress 5.9 (props [@dkotter](https://github.com/dkotter), [@mohitwp](https://github.com/mohitwp), [@peterwilsoncc](https://github.com/peterwilsoncc) via [#64](https://github.com/10up/insecure-content-warning/pull/64)). + ## [1.0.0] - 2021-08-24 ### Added - Initial public release! 🎉 diff --git a/CREDITS.md b/CREDITS.md index 9c4d271..cab81c2 100644 --- a/CREDITS.md +++ b/CREDITS.md @@ -10,7 +10,7 @@ The following individuals are responsible for curating the list of issues, respo Thank you to all the people who have already contributed to this repository via bug reports, code, design, ideas, project management, translation, testing, etc. -[Peter Sorensen (@psorensen)](https://github.com/psorensen), [Curtis Loisel (@csloisel)](https://github.com/csloisel), [David Green (@davidrgreen)](https://github.com/davidrgreen), [Taylor Lovett (@tlovett1)](https://github.com/tlovett1), [Adam Silverstein (@adamsilverstein)](https://github.com/adamsilverstein), [William Patton (@pattonwebz)](https://github.com/pattonwebz), [Helen Hou-Sandi (@helen)](https://github.com/helen), [Zachary Brown (@TheLastCicada)](https://github.com/TheLastCicada), [Jeffrey Paul (@jeffpaul)](https://github.com/jeffpaul), [Darin Kotter (@dkotter)](https://github.com/dkotter), [Tung Du (@dinhtungdu)](https://github.com/dinhtungdu), [Thrijith Thankachan (@thrijith)](https://github.com/thrijith), [David Chandra Purnama (@turtlepod)](https://github.com/turtlepod), [Cassi Goozen (@cgoozen)](https://profiles.wordpress.org/cgoozen/). +[Peter Sorensen (@psorensen)](https://github.com/psorensen), [Curtis Loisel (@csloisel)](https://github.com/csloisel), [David Green (@davidrgreen)](https://github.com/davidrgreen), [Taylor Lovett (@tlovett1)](https://github.com/tlovett1), [Adam Silverstein (@adamsilverstein)](https://github.com/adamsilverstein), [William Patton (@pattonwebz)](https://github.com/pattonwebz), [Helen Hou-Sandi (@helen)](https://github.com/helen), [Zachary Brown (@TheLastCicada)](https://github.com/TheLastCicada), [Jeffrey Paul (@jeffpaul)](https://github.com/jeffpaul), [Darin Kotter (@dkotter)](https://github.com/dkotter), [Tung Du (@dinhtungdu)](https://github.com/dinhtungdu), [Thrijith Thankachan (@thrijith)](https://github.com/thrijith), [David Chandra Purnama (@turtlepod)](https://github.com/turtlepod), [Cassi Goozen (@cgoozen)](https://profiles.wordpress.org/cgoozen/), [Mohit Dadhich (@mohitwp)](https://github.com/mohitwp), [Peter Wilson (@peterwilsoncc)](https://github.com/peterwilsoncc). ## Libraries diff --git a/README.md b/README.md index 1532660..01a176a 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,9 @@ > Prevent editors from adding insecure content in the editor. -[![Support Level](https://img.shields.io/badge/support-active-green.svg)](#support-level) [![Release Version](https://img.shields.io/github/release/10up/insecure-content-warning.svg)](https://github.com/10up/insecure-content-warning/releases/latest) ![WordPress tested up to version](https://img.shields.io/wordpress/plugin/tested/insecure-content-warning?label=WordPress) [![GPLv2 License](https://img.shields.io/github/license/10up/insecure-content-warning.svg)](https://github.com/10up/insecure-content-warning/blob/develop/LICENSE.md) +[![Support Level](https://img.shields.io/badge/support-active-green.svg)](#support-level) [![Linting](https://github.com/10up/insecure-content-warning/actions/workflows/lint.yml/badge.svg)](https://github.com/10up/insecure-content-warning/actions/workflows/lint.yml) [![Release Version](https://img.shields.io/github/release/10up/insecure-content-warning.svg)](https://github.com/10up/insecure-content-warning/releases/latest) ![WordPress tested up to version](https://img.shields.io/wordpress/plugin/tested/insecure-content-warning?label=WordPress) [![GPLv2 License](https://img.shields.io/github/license/10up/insecure-content-warning.svg)](https://github.com/10up/insecure-content-warning/blob/develop/LICENSE.md) -![Screenshot of edit screen](.wordpress-org/screenshot-1.png) +![Example of attempting to publish a post with insecure content - classic editor.](.wordpress-org/screenshot-1.png) ## Description @@ -12,7 +12,7 @@ Insecure Content Warning helps content creators with secure (HTTPS) websites avo Compatible with both the block and classic editors. -![Screenshot of Gutenberg in action](.wordpress-org/screenshot-2.png) +![Example of attempting to publish a post with insecure content - block editor.](.wordpress-org/screenshot-2.png) ## Requirements diff --git a/insecure-content-warning.php b/insecure-content-warning.php index e3f0bc6..34d542d 100644 --- a/insecure-content-warning.php +++ b/insecure-content-warning.php @@ -3,7 +3,7 @@ * Plugin Name: Insecure Content Warning * Plugin URI: https://wordpress.org/plugins/insecure-content-warning/ * Description: Prevent editors from adding insecure content in the editor. - * Version: 1.0.0 + * Version: 1.0.1 * Requires at least: 5.3 * Requires PHP: 7.0 * Author: 10up @@ -22,7 +22,7 @@ define( 'INSECURE_CONTENT_TEMPLATE_URL', get_template_directory_uri() ); define( 'INSECURE_CONTENT_PATH', __DIR__ . DIRECTORY_SEPARATOR ); define( 'INSECURE_CONTENT_INC', INSECURE_CONTENT_PATH . 'includes' . DIRECTORY_SEPARATOR ); -define( 'INSECURE_CONTENT_VERSION', '1.0.0' ); +define( 'INSECURE_CONTENT_VERSION', '1.0.1' ); require_once INSECURE_CONTENT_INC . 'assets.php'; require_once INSECURE_CONTENT_INC . 'rest.php'; diff --git a/package.json b/package.json index 8b620b3..b42b783 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "insecure-content-warning", - "version": "1.0.0", + "version": "1.0.1", "description": "Prevent editors from adding insecure content in the editor.", "homepage": "https://github.com/10up/insecure-content-warning", "license": "GPL-2.0-or-later", diff --git a/readme.txt b/readme.txt index 0e8bc55..26711a1 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: publishing, publishers, secure content, https, ssl Requires at least: 5.3 Tested up to: 5.9 Requires PHP: 7.0 -Stable tag: 1.0.0 +Stable tag: 1.0.1 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -38,5 +38,8 @@ This plugin requires no configuration. Simply activate and the plugin will preve == Changelog == += 1.0.1 = +* **Fixed:** Ensure we support WordPress 5.9 (props [@dkotter](https://github.com/dkotter), [@mohitwp](https://github.com/mohitwp), [@peterwilsoncc](https://github.com/peterwilsoncc)). + = 1.0.0 = * **Added:** Initial public release! 🎉