From 4d427dd29388bb4e5da84135c8d1c13b2fe2adfb Mon Sep 17 00:00:00 2001 From: Brian DiChiara Date: Mon, 7 Oct 2024 08:51:30 -0500 Subject: [PATCH] v1.0.6: Version bump and change log update --- README.md | 12 ++++++++++++ packages.json | 2 +- .../acf-blocks-toolkit/acf-blocks-toolkit.php | 4 ++-- .../plugins/acf-blocks-toolkit/package-lock.json | 4 ++-- wp-content/plugins/acf-blocks-toolkit/package.json | 2 +- 5 files changed, 18 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index c2b0a350..406ba43f 100644 --- a/README.md +++ b/README.md @@ -57,6 +57,18 @@ ddev delete project-name -O -y && cd ../ && rm -rf project-name ## Changelog +### v1.0.6 +* Added 2 new breakpoints: `wp-cols` and `mobile-menu`. +* Added Full Site Editor style support. +* Added Button Icon support for the Post Excerpt block. +* Added Default templates for Archive and Singular posts. +* Fixed duplicate admin notice. +* Fixed a deployment issue where a package was missing. +* Automated the WordPress color palette from the Tailwind config. +* Reorganized some of the source files. +* Updated Dependencies +* Other minor bug fixes, corrections, and code comments. + ### v1.0.5 * Fixed issue where WordPress was not installing correctly. * Fixed issue where Viget WP Composer installation was not working. diff --git a/packages.json b/packages.json index eaff95f3..56cc5c00 100644 --- a/packages.json +++ b/packages.json @@ -1,7 +1,7 @@ { "package": { "name": "viget/wordpress-site-starter", - "version": "1.0.5", + "version": "1.0.6", "source": { "url": "/root/path/not/relative/path/to/wordpress-site-starter/.git", "type": "git", diff --git a/wp-content/plugins/acf-blocks-toolkit/acf-blocks-toolkit.php b/wp-content/plugins/acf-blocks-toolkit/acf-blocks-toolkit.php index c7dca2bb..755e26ca 100644 --- a/wp-content/plugins/acf-blocks-toolkit/acf-blocks-toolkit.php +++ b/wp-content/plugins/acf-blocks-toolkit/acf-blocks-toolkit.php @@ -3,7 +3,7 @@ * Plugin Name: ACF Blocks Toolkit * Plugin URI: https://viget.com * Description: ACF Block Registration and Helper functions. - * Version: 1.0.2 + * Version: 1.0.3 * Requires at least: 5.7 * Requires PHP: 8.1 * Requires Plugins: advanced-custom-fields-pro @@ -22,7 +22,7 @@ use Viget\ACFBlocksToolkit\Settings; // Plugin version. -const ACFBT_VERSION = '1.0.2'; +const ACFBT_VERSION = '1.0.3'; // Plugin path. define( 'ACFBT_PLUGIN_PATH', plugin_dir_path( __FILE__ ) ); diff --git a/wp-content/plugins/acf-blocks-toolkit/package-lock.json b/wp-content/plugins/acf-blocks-toolkit/package-lock.json index 270d73fe..6b3bcd79 100644 --- a/wp-content/plugins/acf-blocks-toolkit/package-lock.json +++ b/wp-content/plugins/acf-blocks-toolkit/package-lock.json @@ -1,12 +1,12 @@ { "name": "acf-blocks-toolkit", - "version": "1.0.2", + "version": "1.0.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "acf-blocks-toolkit", - "version": "1.0.2", + "version": "1.0.3", "license": "GPL-2.0-or-later", "dependencies": { "classnames": "^2.5.1" diff --git a/wp-content/plugins/acf-blocks-toolkit/package.json b/wp-content/plugins/acf-blocks-toolkit/package.json index ea4a4571..2c999068 100644 --- a/wp-content/plugins/acf-blocks-toolkit/package.json +++ b/wp-content/plugins/acf-blocks-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "acf-blocks-toolkit", - "version": "1.0.2", + "version": "1.0.3", "description": "ACF Block support and button icons.", "author": "Viget", "license": "GPL-2.0-or-later",