From 98327677757eb28ebf7ae9fe98bd5e81d64ba73a Mon Sep 17 00:00:00 2001 From: Ryan Kienstra Date: Fri, 24 Sep 2021 12:27:35 -0500 Subject: [PATCH 1/5] Bump the version to 1.4.0 And add a CHANGELOG entry for this version. --- CHANGELOG.md | 7 +++++++ README.md | 4 ++-- genesis-custom-blocks.php | 2 +- package-lock.json | 14 +++++++------- package.json | 2 +- 5 files changed, 18 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 52fbb607..dacb6302 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ ## Changelog ## +### 1.40 - 2021-9-30 ### + +Add a modal option to make longer blocks easier, fix for widgets.php + +* Optional modal for editor fields. [PR 93](https://github.com/studiopress/genesis-custom-blocks/pull/93) +* Fix ServerSideRender in /wp-admin/widgets.php. [PR 94](https://github.com/studiopress/genesis-custom-blocks/pull/94) + ### 1.3.1 - 2021-08-26 ### Fix for fields with long strings diff --git a/README.md b/README.md index 31ddf410..5bf1156b 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,10 @@ Contributors: lukecarbis, ryankienstra, Stino11, rheinardkorf, studiopress, wpengine Tags: gutenberg, blocks, block editor, fields, template -Requires at least: 5.4 +Requires at least: 5.7 Tested up to: 5.8 Requires PHP: 5.6 -Stable tag: 1.3.1 +Stable tag: 1.4.0 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl diff --git a/genesis-custom-blocks.php b/genesis-custom-blocks.php index b4e7dcef..085ce232 100644 --- a/genesis-custom-blocks.php +++ b/genesis-custom-blocks.php @@ -8,7 +8,7 @@ * * Plugin Name: Genesis Custom Blocks * Description: The easy way to build custom blocks for Gutenberg. - * Version: 1.3.1 + * Version: 1.4.0 * Author: Genesis Custom Blocks * Author URI: https://studiopress.com * License: GPL2 diff --git a/package-lock.json b/package-lock.json index 0fa6e2de..5a5bcc73 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "genesis-custom-blocks", - "version": "1.3.1", + "version": "1.4.0", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -6848,6 +6848,12 @@ "icss-utils": "^5.0.0" } }, + "prettier": { + "version": "npm:wp-prettier@2.2.1-beta-1", + "resolved": "https://registry.npmjs.org/wp-prettier/-/wp-prettier-2.2.1-beta-1.tgz", + "integrity": "sha512-+JHkqs9LC/JPp51yy1hzs3lQ7qeuWCwOcSzpQNeeY/G7oSpnF61vxt7hRh87zNRTr6ob2ndy0W8rVzhgrcA+Gw==", + "dev": true + }, "sass-loader": { "version": "10.2.0", "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-10.2.0.tgz", @@ -21904,12 +21910,6 @@ "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true }, - "prettier": { - "version": "npm:wp-prettier@2.2.1-beta-1", - "resolved": "https://registry.npmjs.org/wp-prettier/-/wp-prettier-2.2.1-beta-1.tgz", - "integrity": "sha512-+JHkqs9LC/JPp51yy1hzs3lQ7qeuWCwOcSzpQNeeY/G7oSpnF61vxt7hRh87zNRTr6ob2ndy0W8rVzhgrcA+Gw==", - "dev": true - }, "prettier-linter-helpers": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", diff --git a/package.json b/package.json index 256f27ae..4da3405e 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "genesis-custom-blocks", "title": "Genesis Custom Blocks", - "version": "1.3.1", + "version": "1.4.0", "description": "WordPress plugin with a simple templating system for building custom blocks.", "author": "Genesis Custom Blocks", "license": "GPL-2.0-or-later", From 650555e3a690b4149e9864e95b6e28d7e5e1895b Mon Sep 17 00:00:00 2001 From: Ryan Kienstra Date: Fri, 24 Sep 2021 12:41:55 -0500 Subject: [PATCH 2/5] Fix the version in the CHANGELOG, capitalize Field --- CHANGELOG.md | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dacb6302..4000d8be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ ## Changelog ## -### 1.40 - 2021-9-30 ### +### 1.4.0 - 2021-9-30 ### Add a modal option to make longer blocks easier, fix for widgets.php diff --git a/README.md b/README.md index 5bf1156b..94947e28 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ Let the plugin do the heavy lifting so you can use the built-in editor, or famil As an alternative to the built-in editor, there are simple functions, ready to render and work with the data stored through your custom block fields. ## Currently available block fields ## -* Inner Blocks field +* Inner Blocks Field * File Field * Text Field * Image Field From 1194e274c887409c3cfdc65ecbd5d5f420658339 Mon Sep 17 00:00:00 2001 From: Ryan Kienstra Date: Tue, 12 Oct 2021 16:17:47 -0500 Subject: [PATCH 3/5] Move the release date later to October 14th The planned release date. --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4000d8be..33835f97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ ## Changelog ## -### 1.4.0 - 2021-9-30 ### +### 1.4.0 - 2021-10-14 ### Add a modal option to make longer blocks easier, fix for widgets.php From 060cee38b26163893d4790da2901d1848fe461ad Mon Sep 17 00:00:00 2001 From: Ryan Kienstra Date: Thu, 14 Oct 2021 00:54:07 -0500 Subject: [PATCH 4/5] Remove summary of changes --- CHANGELOG.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 33835f97..90a83e2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,6 @@ ### 1.4.0 - 2021-10-14 ### -Add a modal option to make longer blocks easier, fix for widgets.php - * Optional modal for editor fields. [PR 93](https://github.com/studiopress/genesis-custom-blocks/pull/93) * Fix ServerSideRender in /wp-admin/widgets.php. [PR 94](https://github.com/studiopress/genesis-custom-blocks/pull/94) From 433ba0d733351e92b8865624c08e7afc6050f5e6 Mon Sep 17 00:00:00 2001 From: Ryan Kienstra Date: Thu, 14 Oct 2021 11:15:37 -0500 Subject: [PATCH 5/5] Remove fix for widgets.php Like Jen mentioned, this isn't fixed. --- CHANGELOG.md | 1 - 1 file changed, 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 90a83e2a..86060bda 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,6 @@ ### 1.4.0 - 2021-10-14 ### * Optional modal for editor fields. [PR 93](https://github.com/studiopress/genesis-custom-blocks/pull/93) -* Fix ServerSideRender in /wp-admin/widgets.php. [PR 94](https://github.com/studiopress/genesis-custom-blocks/pull/94) ### 1.3.1 - 2021-08-26 ###