Skip to content

Commit d1fa369

Browse files
authored
release: 0.12.6 (#411)
1 parent 640e050 commit d1fa369

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## [Unreleased]
44

5+
## v0.12.6
6+
7+
This _minor_ release adds explicit support for PHP 8.2 and WordPress 6.5 - including the new Plugin Dependency header. Additionally, we've updated the Composer dependencies, and improved code quality and type safety.
8+
59
- feat: Add plugin dependency header.
610
- chore: Update Composer deps and lint.
711
- chore: Lock WPBrowser to <3.5.0 to prevent conflicts with Codeception.

phpstan/constants.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55

66
define( 'CRGEARY_JAMSTACK_DEPLOYMENTS_OPTIONS_KEY', 'wp-jamstack-deployments' );
77
define( 'WPGRAPHQL_GF_PLUGIN_FILE', 'wp-graphql-gravity-forms.php' );
8-
define( 'WPGRAPHQL_GF_VERSION', '0.12.5' );
8+
define( 'WPGRAPHQL_GF_VERSION', '0.12.6' );

vendor/composer/installed.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
'name' => 'harness-software/wp-graphql-gravity-forms',
44
'pretty_version' => 'dev-develop',
55
'version' => 'dev-develop',
6-
'reference' => 'a7fed252b80aaaaf46d7ae61c7d923fd60f54da4',
6+
'reference' => '640e050e13f5caa91348da2a1e115cdbfcb58999',
77
'type' => 'wordpress-plugin',
88
'install_path' => __DIR__ . '/../../',
99
'aliases' => array(),
@@ -13,7 +13,7 @@
1313
'harness-software/wp-graphql-gravity-forms' => array(
1414
'pretty_version' => 'dev-develop',
1515
'version' => 'dev-develop',
16-
'reference' => 'a7fed252b80aaaaf46d7ae61c7d923fd60f54da4',
16+
'reference' => '640e050e13f5caa91348da2a1e115cdbfcb58999',
1717
'type' => 'wordpress-plugin',
1818
'install_path' => __DIR__ . '/../../',
1919
'aliases' => array(),

wp-graphql-gravity-forms.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Author: AxePress Development
88
* Author URI: https://axepress.dev
99
* Update URI: https://github.com/axewp/wp-graphql-gravity-forms/releases
10-
* Version: 0.12.5
10+
* Version: 0.12.6
1111
* Text Domain: wp-graphql-gravity-forms
1212
* Domain Path: /languages
1313
* Requires at least: 5.4.1
@@ -36,7 +36,7 @@
3636
function gf_graphql_constants(): void {
3737
// Plugin version.
3838
if ( ! defined( 'WPGRAPHQL_GF_VERSION' ) ) {
39-
define( 'WPGRAPHQL_GF_VERSION', '0.12.5' );
39+
define( 'WPGRAPHQL_GF_VERSION', '0.12.6' );
4040
}
4141

4242
// Plugin Folder Path.

0 commit comments

Comments
 (0)