Skip to content

Commit dc7a27f

Browse files
Release Plugin (#356)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 84a65bb commit dc7a27f

File tree

5 files changed

+16
-15
lines changed

5 files changed

+16
-15
lines changed

.changeset/wicked-vans-fly.md

-5
This file was deleted.

CHANGELOG.md

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

3+
## 4.8.1
4+
5+
### Patch Changes
6+
7+
- 84a65bb: bug: Fixes fatal error when you de-activate WPGraphQL
8+
39
## 4.8.0
410

511
### Minor Changes

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": "4.8.0",
4+
"version": "4.8.1",
55
"engines": {
66
"node": ">=16.0.0"
77
},

readme.txt

+7-7
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.7.1
6-
Stable tag: 4.8.0
6+
Stable tag: 4.8.1
77
Requires PHP: 7.4
88
License: GPLv2 or later
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html
@@ -26,6 +26,12 @@ Extends WPGraphQL to support querying (Gutenberg) Blocks as data.
2626

2727
== Changelog ==
2828

29+
= 4.8.1 =
30+
31+
### Patch Changes
32+
33+
- 84a65bb: bug: Fixes fatal error when you de-activate WPGraphQL
34+
2935
= 4.8.0 =
3036

3137
### Minor Changes
@@ -222,10 +228,4 @@ Extends WPGraphQL to support querying (Gutenberg) Blocks as data.
222228
}
223229
```
224230

225-
= 4.6.0 =
226-
227-
### Minor Changes
228-
229-
- 7838c93: Replaced old plugin service to use the WPE updater service for checking for updates. The new API endpoint will be https://wpe-plugin-updates.wpengine.com/wp-graphql-content-blocks/info.json
230-
231231
[View the full changelog](https://github.com/wpengine/wp-graphql-content-blocks/blob/main/CHANGELOG.md)

wp-graphql-content-blocks.php

+2-2
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: 4.8.0
11+
* Version: 4.8.1
1212
* Requires PHP: 7.4
1313
* Requires at least: 5.7
1414
* Requires Plugins: wp-graphql
@@ -47,7 +47,7 @@ function wpgraphql_content_blocks_constants(): void {
4747
}
4848

4949
if ( ! defined( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION' ) ) {
50-
define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '4.8.0' );
50+
define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '4.8.1' );
5151
}
5252

5353
if ( ! defined( 'WPGRAPHQL_CONTENT_BLOCKS_PLUGIN_URL' ) ) {

0 commit comments

Comments
 (0)