From d7b58815da17fd868c86f397db3cd55582b8e04b Mon Sep 17 00:00:00 2001 From: Ryan Kienstra Date: Wed, 2 Aug 2023 10:23:18 -0600 Subject: [PATCH] Bump version to `1.5.2`, add a `Changelog` entry (#149) * Bump version to 1.5.2, add a Changelog entry * Run check-versions on the release branch * Change PHP version to 7.0 --- .circleci/config.yml | 2 +- README.md | 5 ++++- genesis-custom-blocks.php | 2 +- package-lock.json | 2 +- package.json | 2 +- 5 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 900092a6..102ca797 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -173,7 +173,7 @@ workflows: tags: only: /^\d+\.\d+\.\d+$/ branches: - only: /^release/ + only: /^release.*/ - svn-deploy: context: genesis-svn requires: diff --git a/README.md b/README.md index 881e1a6c..ed75ed56 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Tags: gutenberg, blocks, block editor, fields, template Requires at least: 5.7 Tested up to: 6.3 Requires PHP: 7.0 -Stable tag: 1.5.1 +Stable tag: 1.5.2 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl @@ -112,6 +112,9 @@ No. You can keep using your PHP block templates like block-example.php. 5. Create the markup for your block in a PHP template in your editor, if you'd like. ## Changelog +### 1.5.2 - 2023-08-02 +* Bump minimum PHP version to 7.0. [PR 141](https://github.com/studiopress/genesis-custom-blocks/pull/141) + ### 1.5.1 - 2022-08-09 * PHP 8.1 compatibility fixes. [PR 119](https://github.com/studiopress/genesis-custom-blocks/pull/119) diff --git a/genesis-custom-blocks.php b/genesis-custom-blocks.php index f52dc7e1..f971c965 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.5.1 + * Version: 1.5.2 * Author: Genesis Custom Blocks * Author URI: https://studiopress.com * License: GPL2 diff --git a/package-lock.json b/package-lock.json index fceaf6e6..0a895000 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "genesis-custom-blocks", - "version": "1.5.1", + "version": "1.5.2", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index c35ccb54..e099589e 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "genesis-custom-blocks", "title": "Genesis Custom Blocks", - "version": "1.5.1", + "version": "1.5.2", "description": "WordPress plugin with a simple templating system for building custom blocks.", "author": "Genesis Custom Blocks", "license": "GPL-2.0-or-later",