Skip to content

Commit eb0427d

Browse files
committed
v1.1.2: Version Bump
1 parent c1dd9b9 commit eb0427d

File tree

6 files changed

+19
-6
lines changed

6 files changed

+19
-6
lines changed

changelog.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,11 @@
1+
= 1.1.2 =
2+
* Fixes a bug when ACF passes stdClass into renderCallback.
3+
* Adds Navigation Slug reference to core Navigation block.
4+
5+
= 1.1.1 =
6+
* Bumps Tested up to version to 6.8.
7+
* Fixes a bug where the `block.json` `tagName` was not supported correctly.
8+
* Fixes a bug when the core function `wp_style_engine_get_styles` does not return the `css` array key index.
9+
110
= 1.1.0 =
211
* Initial Release

package-lock.json

Lines changed: 1 addition & 1 deletion
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.1",
3+
"version": "1.1.2",
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.1",
4+
"version": "1.1.2",
55
"source": {
66
"url": "/root/path/not/relative/path/to/viget-blocks-toolkit/.git",
77
"type": "git",

readme.txt

Lines changed: 5 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.1
6+
Stable tag: 1.1.2
77
Requires PHP: 8.1
88
License: GPLv2 or later
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html
@@ -30,6 +30,10 @@ No. There are several features of this plugin that can be used without Advanced
3030

3131
== Changelog ==
3232

33+
= 1.1.2 =
34+
* Fixes a bug when ACF passes stdClass into renderCallback.
35+
* Adds Navigation Slug reference to core Navigation block.
36+
3337
= 1.1.1 =
3438
* Bumps Tested up to version to 6.8.
3539
* Fixes a bug where the `block.json` `tagName` was not supported correctly.

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.1
6+
* Version: 1.1.2
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.1';
20+
const VGTBT_VERSION = '1.1.2';
2121

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

0 commit comments

Comments
 (0)