Skip to content

Commit 0ef0133

Browse files
committed
v1.1.3: Version bump
1 parent 94bc0c2 commit 0ef0133

File tree

6 files changed

+21
-7
lines changed

6 files changed

+21
-7
lines changed

changelog.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
1+
= 1.1.3 =
2+
3+
* Adds FAQPage Schema support to Core Accordion blocks.
4+
15
= 1.1.2 =
6+
27
* Fixes a bug when ACF passes stdClass into renderCallback.
38
* Adds Navigation Slug reference to core Navigation block.
49

510
= 1.1.1 =
11+
612
* Bumps Tested up to version to 6.8.
713
* Fixes a bug where the `block.json` `tagName` was not supported correctly.
814
* Fixes a bug when the core function `wp_style_engine_get_styles` does not return the `css` array key index.
915

1016
= 1.1.0 =
17+
1118
* Initial Release

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "viget-blocks-toolkit",
3-
"version": "1.1.2",
3+
"version": "1.1.3",
44
"description": "Custom Block support and button icons.",
55
"author": "Viget",
66
"license": "GPL-2.0-or-later",

packages.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"package": {
33
"name": "viget/viget-blocks-toolkit",
4-
"version": "1.1.2",
4+
"version": "1.1.3",
55
"source": {
66
"url": "/root/path/not/relative/path/to/viget-blocks-toolkit/.git",
77
"type": "git",

readme.txt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: viget, briandichiara, nathanschmidt
33
Tags: blocks,icons,components,editor,acf
44
Requires at least: 5.7
55
Tested up to: 6.8
6-
Stable tag: 1.1.2
6+
Stable tag: 1.1.3
77
Requires PHP: 8.1
88
License: GPLv2 or later
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html
@@ -30,14 +30,21 @@ No. There are several features of this plugin that can be used without Advanced
3030

3131
== Changelog ==
3232

33+
= 1.1.3 =
34+
35+
* Adds FAQPage Schema support to Core Accordion blocks.
36+
3337
= 1.1.2 =
38+
3439
* Fixes a bug when ACF passes stdClass into renderCallback.
3540
* Adds Navigation Slug reference to core Navigation block.
3641

3742
= 1.1.1 =
43+
3844
* Bumps Tested up to version to 6.8.
3945
* Fixes a bug where the `block.json` `tagName` was not supported correctly.
4046
* Fixes a bug when the core function `wp_style_engine_get_styles` does not return the `css` array key index.
4147

4248
= 1.1.0 =
49+
4350
* Initial Release

viget-blocks-toolkit.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: Viget Blocks Toolkit
44
* Plugin URI: https://github.com/vigetlabs/viget-blocks-toolkit
55
* Description: Simplifying Block Registration and other block editor related features.
6-
* Version: 1.1.2
6+
* Version: 1.1.3
77
* Requires at least: 5.7
88
* Requires PHP: 8.1
99
* Author: Viget
@@ -17,7 +17,7 @@
1717
*/
1818

1919
// Plugin version.
20-
const VGTBT_VERSION = '1.1.2';
20+
const VGTBT_VERSION = '1.1.3';
2121

2222
// Plugin path.
2323
define( 'VGTBT_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );

0 commit comments

Comments
 (0)