From 0ebc9350a6d0f64f0d99690fefa1091cc23a5206 Mon Sep 17 00:00:00 2001 From: Geoff Dusome Date: Thu, 1 Jun 2023 10:38:08 -0400 Subject: [PATCH] update version variables --- README.txt | 5 ++++- block-editor-custom-alignments.php | 4 ++-- package-lock.json | 2 +- package.json | 2 +- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/README.txt b/README.txt index cce1db7..66107c6 100644 --- a/README.txt +++ b/README.txt @@ -4,7 +4,7 @@ Donate link: https://tri.be Tags: blocks, editor, alignment Requires at least: 6.0 Tested up to: 6.2 -Stable tag: 1.0.3 +Stable tag: 1.0.4 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -21,6 +21,9 @@ The plugin runs off of an `_experimentalLayout` attribute in `theme.json` that a == Changelog == += 1.0.4 = +* Use `wp_remote_get` for grabbing `theme.json` to prevent SSL errors + = 1.0.3 = * Fix how the admin scripts get enqueued (dependencies) diff --git a/block-editor-custom-alignments.php b/block-editor-custom-alignments.php index 5870c0d..e0d895b 100644 --- a/block-editor-custom-alignments.php +++ b/block-editor-custom-alignments.php @@ -13,7 +13,7 @@ * Plugin Name: Block Editor Custom Alignments * Plugin URI: https://https://github.com/moderntribe/block-editor-custom-alignments * Description: Allows developers to add custom alignments to `theme.json` for use in the block editor. - * Version: 1.0.3 + * Version: 1.0.4 * Author: Modern Tribe * Author URI: https://tri.be * License: GPL-2.0+ @@ -54,7 +54,7 @@ class Block_Editor_Custom_Alignments { public function __construct() { global $pagenow; - $this->version = '1.0.3'; + $this->version = '1.0.4'; $this->name = 'block-editor-custom-alignments'; $this->base_url = trailingslashit( plugin_dir_url( __FILE__ ) ); $this->theme_json = $this->block_editor_custom_alignments_theme_json(); diff --git a/package-lock.json b/package-lock.json index f538c69..22e5ef1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "block-editor-custom-alignments", - "version": "1.0.0", + "version": "1.0.4", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index 3ea980b..b64d949 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "block-editor-custom-alignments", - "version": "1.0.3", + "version": "1.0.4", "description": "Allows developers to add custom alignments to `theme.json` for use in the block editor.", "author": "Modern Tribe ", "license": "GPL-2.0-or-later",