Skip to content

Commit 9f9f1ad

Browse files
Release Plugin (#119)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 9da444c commit 9f9f1ad

8 files changed

+26
-32
lines changed

.changeset/curly-spiders-greet.md

-5
This file was deleted.

.changeset/few-mice-bathe.md

-5
This file was deleted.

.changeset/new-planes-itch.md

-5
This file was deleted.

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# WPGraphQL Content Blocks
22

3+
## 1.1.0
4+
5+
### Minor Changes
6+
7+
- cbcb430: Feat: Add CoreButton and CoreButtons block extra attributes.
8+
- 2e4ac46: Adds the `cssClassName` attribute to the `CoreList` block. This allows you to query for the proper class names that WordPress assigns to the Core List block.
9+
10+
### Patch Changes
11+
12+
- 135252e: Adds cssClassName attribute in CoreHeading.
13+
314
## 1.0.0
415

516
### Major Changes

includes/WPGraphQLContentBlocks.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ private function setup_constants(): void {
7878
$main_file_path = dirname( __DIR__ ) . '/wp-graphql.php';
7979

8080
// Plugin version.
81-
$this->define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '1.0.0' );
81+
$this->define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '1.1.0' );
8282
// Plugin Folder Path.
8383
$this->define( 'WPGRAPHQL_CONTENT_BLOCKS_PLUGIN_DIR', plugin_dir_path( $main_file_path ) );
8484
// Plugin Root File.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@wpengine/wp-graphql-content-blocks",
33
"private": true,
4-
"version": "1.0.0",
4+
"version": "1.1.0",
55
"engines": {
66
"node": ">=16.0.0"
77
},

readme.txt

+12-14
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: blakewpe, chriswiegman, joefusco, matthewguywright, TeresaGobble,
33
Tags: faustjs, faust, headless, decoupled, gutenberg
44
Requires at least: 5.7
55
Tested up to: 6.1
6-
Stable tag: 1.0.0
6+
Stable tag: 1.1.0
77
Requires PHP: 7.4
88
License: GPLv2 or later
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html
@@ -25,6 +25,17 @@ Extends WPGraphQL to support querying (Gutenberg) Blocks as data.
2525

2626
== Changelog ==
2727

28+
= 1.1.0 =
29+
30+
### Minor Changes
31+
32+
- cbcb430: Feat: Add CoreButton and CoreButtons block extra attributes.
33+
- 2e4ac46: Adds the `cssClassName` attribute to the `CoreList` block. This allows you to query for the proper class names that WordPress assigns to the Core List block.
34+
35+
### Patch Changes
36+
37+
- 135252e: Adds cssClassName attribute in CoreHeading.
38+
2839
= 1.0.0 =
2940

3041
### Major Changes
@@ -74,17 +85,4 @@ Extends WPGraphQL to support querying (Gutenberg) Blocks as data.
7485
- 16d43eb: chore: Set the minimum PHP version in `composer.json` to v7.2 (and the platform req to v7.3) to ensure contributions are built against the correct dependencies.
7586
- 949af70: fix: Use strict string comparison when parsing the attribute selector.
7687

77-
= 0.2.1 =
78-
79-
### Patch Changes
80-
81-
- 0a29e79: Added support for the `multiline` property in `html` sourced block attributes
82-
- 0a29e79: Added support for `integer` type block attributes
83-
- 0a29e79: Added support for `text` sourced block attributes
84-
- 51011a6: Fix: slow schema / slow queries / unexpected Schema output
85-
- c2e6648: Warn the user if they downloaded the source code .zip instead of the production ready .zip file
86-
- 8955fac: Bug Fix: inner blocks "anchor" field being applied to parent block resulting in duplicates
87-
- c474da8: Add support for querying blocks per post type
88-
- a12542c: Add interface BlockWithSupportsAnchor for querying blocks that supports Anchor field
89-
9088
[View the full changelog](https://github.com/wpengine/wp-graphql-content-blocks/blob/main/CHANGELOG.md)

wp-graphql-content-blocks.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
99
* Text Domain: wp-graphql-content-blocks
1010
* Domain Path: /languages
11-
* Version: 1.0.0
11+
* Version: 1.1.0
1212
* Requires PHP: 7.4
1313
* Requires at least: 5.7
1414
*

0 commit comments

Comments
 (0)