Skip to content

Commit 18c0713

Browse files
authored
release: 0.5.0 (#71)
* release: 0.5.0 * chore: typo
1 parent a849533 commit 18c0713

File tree

5 files changed

+18
-8
lines changed

5 files changed

+18
-8
lines changed

CHANGELOG.md

+12-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,23 @@
11
# Changelog
22

3-
## Unreleased
3+
## [Unreleased]
44

5-
- feat: Add WPGraphQL to Plugin Dependencies header.
5+
## v0.5.0
6+
7+
This _major_ release refactors the root files to use the `WPGraphQL\FacetWP` namespace. It also adds support for the Plugin Dependencies header added in WordPress 6.5, adds explicit support for PHP 8.2 and WordPress 6.5, and more.
8+
9+
> [!NOTE]
10+
> Although this release technically contains breaking changes, these changes are limited to developers directly extending the `wp-graphql-facetwp.php` file and `WPGraphQL\FacetWP\Main` class.
11+
> If you are using the plugin as intended, you should not experience any issues when upgrading.
12+
13+
- feat: Add support for Plugin Dependencies header.
614
- chore!: Refactor plugin entrypoint to use `WPGraphQL\FacetWP` namespace.
715
- chore: Implement strict phpstan rules and lint.
816
- chore: Update Composer dependencies and lint.
917
- chore: Update WPGraphQL Plugin Boilerplate to v0.1.0.
1018
- ci: Test against WP 6.5.
11-
- ci: Update GitHub Workflows.
19+
- ci: Test against PHP 8.2.
20+
- ci: Update GitHub Workflows to latest versions.
1221
- ci: Update Strauss to v0.17.0.
1322

1423
## v0.4.4

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Adds WPGraphQL support for [FacetWP](https://facetwp.com/).
77
* [Documentation](#usage)
88
-----
99

10-
![Packagist License](https://img.shields.io/packagist/l/hsimah-services/wp-graphql-facetwp?color=green) ![Packagist Version](https://img.shields.io/packagist/v/hsimah-services/wp-graphql-facetwp?label=stable) ![GitHub commits since latest release (by SemVer)](https://img.shields.io/github/commits-since/hsimah-services/wp-graphql-facetwp/0.4.4) ![GitHub forks](https://img.shields.io/github/forks/hsimah-services/wp-graphql-facetwp?style=social) ![GitHub Repo stars](https://img.shields.io/github/stars/hsimah-services/wp-graphql-facetwp?style=social)<br />
10+
![Packagist License](https://img.shields.io/packagist/l/hsimah-services/wp-graphql-facetwp?color=green) ![Packagist Version](https://img.shields.io/packagist/v/hsimah-services/wp-graphql-facetwp?label=stable) ![GitHub commits since latest release (by SemVer)](https://img.shields.io/github/commits-since/hsimah-services/wp-graphql-facetwp/0.5.0) ![GitHub forks](https://img.shields.io/github/forks/hsimah-services/wp-graphql-facetwp?style=social) ![GitHub Repo stars](https://img.shields.io/github/stars/hsimah-services/wp-graphql-facetwp?style=social)<br />
1111
![CodeQuality](https://img.shields.io/github/actions/workflow/status/hsimah-services/wp-graphql-facetwp/code-quality.yml?branch=develop&label=Code%20Quality)
1212
![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/hsimah-services/wp-graphql-facetwp/integration-testing.yml?branch=develop&label=Integration%20Testing)
1313
![Coding Standards](https://img.shields.io/github/actions/workflow/status/hsimah-services/wp-graphql-facetwp/code-standard.yml?branch=develop&label=WordPress%20Coding%20Standards)

readme.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Requires PHP: 7.4
66
Requires FacetWP: 4.0
77
Requires WPGraphQL: 1.6.0
88
Tested up to: 6.5
9-
Stable tag: 0.4.4
9+
Stable tag: 0.5.0
1010
Maintained at: https://github.com/hsimah-services/wp-graphql-facetwp
1111
License: GPL-3
1212
License URI: https://www.gnu.org/licenses/gpl-3.0.html

src/Autoloader.php

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* Includes the composer Autoloader used for packages and classes in the src/ directory.
44
*
55
* @package WPGraphQL\FacetWP
6+
* @since 0.5.0
67
*/
78

89
declare( strict_types = 1 );

wp-graphql-facetwp.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Description: Adds FacetWP support to WPGraphQL
66
* Author: hsimah, justlevine
77
* Author URI: http://www.hsimah.com
8-
* Version: 0.4.4
8+
* Version: 0.5.0
99
* Text Domain: wpgraphql-facetwp
1010
* Requires at least: 5.4.1
1111
* Requires PHP: 7.4
@@ -19,7 +19,7 @@
1919
* @package WPGraphQL\FacetWP
2020
* @author hsimah
2121
* @license GPL-3
22-
* @version 0.4.4
22+
* @version 0.5.0
2323
*/
2424

2525
namespace WPGraphQL\FacetWP;
@@ -47,7 +47,7 @@
4747
function constants(): void {
4848
// Plugin version.
4949
if ( ! defined( 'WPGRAPHQL_FACETWP_VERSION' ) ) {
50-
define( 'WPGRAPHQL_FACETWP_VERSION', '0.4.4' );
50+
define( 'WPGRAPHQL_FACETWP_VERSION', '0.5.0' );
5151
}
5252

5353
// Plugin Folder Path.

0 commit comments

Comments
 (0)