Skip to content

Commit

Permalink
Merge pull request #46 from wpengine/changeset-release/main
Browse files Browse the repository at this point in the history
Release Plugin
  • Loading branch information
blakewilson authored May 4, 2023
2 parents 8955fac + dad8d5e commit b0bd5f1
Show file tree
Hide file tree
Showing 13 changed files with 30 additions and 44 deletions.
5 changes: 0 additions & 5 deletions .changeset/curly-planes-rhyme.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fair-wasps-decide.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lemon-beans-care.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/long-cooks-march.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lovely-doors-hammer.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/quiet-insects-mate.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/thick-pumpkins-roll.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/violet-bananas-suffer.md

This file was deleted.

13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# WPGraphQL Content Blocks

## 0.2.1

### Patch Changes

- 0a29e79: Added support for the `multiline` property in `html` sourced block attributes
- 0a29e79: Added support for `integer` type block attributes
- 0a29e79: Added support for `text` sourced block attributes
- 51011a6: Fix: slow schema / slow queries / unexpected Schema output
- c2e6648: Warn the user if they downloaded the source code .zip instead of the production ready .zip file
- 8955fac: Bug Fix: inner blocks "anchor" field being applied to parent block resulting in duplicates
- c474da8: Add support for querying blocks per post type
- a12542c: Add interface BlockWithSupportsAnchor for querying blocks that supports Anchor field

## 0.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion includes/WPGraphQLContentBlocks.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ private function setup_constants() {
$main_file_path = dirname( __DIR__ ) . '/wp-graphql.php';

// Plugin version.
$this->define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '0.2.0' );
$this->define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '0.2.1' );
// Plugin Folder Path.
$this->define( 'WPGRAPHQL_CONTENT_BLOCKS_PLUGIN_DIR', plugin_dir_path( $main_file_path ) );
// Plugin Root File.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@wpengine/wp-graphql-content-blocks",
"private": true,
"version": "0.2.0",
"version": "0.2.1",
"engines": {
"node": ">=16.0.0"
},
Expand Down
15 changes: 14 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: blakewpe, chriswiegman, joefusco, matthewguywright, TeresaGobble,
Tags: faustjs, faust, headless, decoupled, gutenberg
Requires at least: 5.7
Tested up to: 6.1
Stable tag: 0.2.0
Stable tag: 0.2.1
Requires PHP: 7.2
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Expand All @@ -25,6 +25,19 @@ Extends WPGraphQL to support querying (Gutenberg) Blocks as data.

== Changelog ==

= 0.2.1 =

### Patch Changes

- 0a29e79: Added support for the `multiline` property in `html` sourced block attributes
- 0a29e79: Added support for `integer` type block attributes
- 0a29e79: Added support for `text` sourced block attributes
- 51011a6: Fix: slow schema / slow queries / unexpected Schema output
- c2e6648: Warn the user if they downloaded the source code .zip instead of the production ready .zip file
- 8955fac: Bug Fix: inner blocks "anchor" field being applied to parent block resulting in duplicates
- c474da8: Add support for querying blocks per post type
- a12542c: Add interface BlockWithSupportsAnchor for querying blocks that supports Anchor field

= 0.2.0 =

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion wp-graphql-content-blocks.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: wp-graphql-content-blocks
* Domain Path: /languages
* Version: 0.2.0
* Version: 0.2.1
* Requires PHP: 7.2
* Requires at least: 5.7
*
Expand Down

0 comments on commit b0bd5f1

Please sign in to comment.