From 92b1f6524df36032c5248bc6d75259cf2b41312e Mon Sep 17 00:00:00 2001 From: Damon Cook Date: Fri, 20 Oct 2023 12:15:03 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20RELEASE:=200.1.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 4 ++++ demo-acf-plugin.php | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1ff290a..492d7f2 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,10 @@ __Required__ You must have [ACF PRO](https://https://www.advancedcustomfields.co ## Changelog +### 0.1.4 – 2023-10-20 + +- Fixed Fatal Error for misnamed function call in `includes/acf-restrict-access.php` 🤦‍♂️ + ### 0.1.3 – 2023-09-25 - Restrict access to block locking based on email domain with `demo_acf_show_admin()` check. diff --git a/demo-acf-plugin.php b/demo-acf-plugin.php index 4e2ee90..46e058b 100644 --- a/demo-acf-plugin.php +++ b/demo-acf-plugin.php @@ -4,7 +4,7 @@ * Description: A demo WordPress plugin for custom ACF PRO Blocks, Post Types, Options Pages, Taxonomies and more. * Requires at least: 6.3 * Requires PHP: 7.4 - * Version: 0.1.3 + * Version: 0.1.4 * Author: ACF * License: GPL-2.0-or-later * License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -14,7 +14,7 @@ */ // Define our handy constants. -define( 'DEMO_ACF_VERSION', '0.1.3' ); +define( 'DEMO_ACF_VERSION', '0.1.4' ); define( 'DEMO_ACF_PLUGIN_DIR', __DIR__ ); define( 'DEMO_ACF_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); define( 'DEMO_ACF_PLUGIN_BLOCKS', DEMO_ACF_PLUGIN_DIR . '/blocks/' );