Skip to content

Commit

Permalink
update version variables
Browse files Browse the repository at this point in the history
  • Loading branch information
GeoffDusome committed Jun 1, 2023
1 parent 000a2a1 commit 0ebc935
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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)

Expand Down
4 changes: 2 additions & 2 deletions block-editor-custom-alignments.php
Original file line number Diff line number Diff line change
Expand Up @@ -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+
Expand Down Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>",
"license": "GPL-2.0-or-later",
Expand Down

0 comments on commit 0ebc935

Please sign in to comment.