Skip to content

Commit

Permalink
release: 0.12.6.1 (#413)
Browse files Browse the repository at this point in the history
  • Loading branch information
justlevine committed May 12, 2024
1 parent d1fa369 commit dd36f40
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased]

## v0.12.6.1

This _patch_ release fixes the version number in the plugin header, which was incorrectly set to `0.12.5` instead of `0.12.6`.

- fix: Correct version number in plugin header.

## v0.12.6

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.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ A WordPress plugin that adds <a href="https://wpgraphql.com" target="_blank">WPG

-----

![Packagist License](https://img.shields.io/packagist/l/harness-software/wp-graphql-gravity-forms?color=green) ![Packagist Version](https://img.shields.io/packagist/v/harness-software/wp-graphql-gravity-forms?label=stable) ![GitHub commits since latest release (by SemVer)](https://img.shields.io/github/commits-since/axewp/wp-graphql-gravity-forms/v0.12.5) ![GitHub forks](https://img.shields.io/github/forks/axewp/wp-graphql-gravity-forms?style=social) ![GitHub Repo stars](https://img.shields.io/github/stars/axewp/wp-graphql-gravity-forms?style=social)<br />
![Packagist License](https://img.shields.io/packagist/l/harness-software/wp-graphql-gravity-forms?color=green) ![Packagist Version](https://img.shields.io/packagist/v/harness-software/wp-graphql-gravity-forms?label=stable) ![GitHub commits since latest release (by SemVer)](https://img.shields.io/github/commits-since/axewp/wp-graphql-gravity-forms/v0.12.6.1) ![GitHub forks](https://img.shields.io/github/forks/axewp/wp-graphql-gravity-forms?style=social) ![GitHub Repo stars](https://img.shields.io/github/stars/axewp/wp-graphql-gravity-forms?style=social)<br />
[![Coverage Status](https://coveralls.io/repos/github/AxeWP/wp-graphql-gravity-forms/badge.svg?branch=develop)](https://coveralls.io/github/AxeWP/wp-graphql-gravity-forms?branch=develop) [![WordPress Coding Standards](https://github.com/axewp/wp-graphql-gravity-forms/actions/workflows/code-standard.yml/badge.svg)](https://github.com/axewp/wp-graphql-gravity-forms/actions/workflows/code-standard.yml) [![Code Quality](https://github.com/axewp/wp-graphql-gravity-forms/actions/workflows/code-quality.yml/badge.svg)](https://github.com/axewp/wp-graphql-gravity-forms/actions/workflows/code-quality.yml) [![Schema Linter](https://github.com/axewp/wp-graphql-gravity-forms/actions/workflows/schema-linter.yml/badge.svg)](https://github.com/axewp/wp-graphql-gravity-forms/actions/workflows/schema-linter.yml)

## Overview
Expand Down
2 changes: 1 addition & 1 deletion phpstan/constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@

define( 'CRGEARY_JAMSTACK_DEPLOYMENTS_OPTIONS_KEY', 'wp-jamstack-deployments' );
define( 'WPGRAPHQL_GF_PLUGIN_FILE', 'wp-graphql-gravity-forms.php' );
define( 'WPGRAPHQL_GF_VERSION', '0.12.6' );
define( 'WPGRAPHQL_GF_VERSION', '0.12.6.' );
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Tested up to: 6.5
Requires PHP: 7.4
Requires Gravity Forms: 2.5.0
Requires WPGraphQL: 1.9.0
Stable tag: 0.12.5
Stable tag: 0.12.6.1
Maintained at: https://github.com/axewp/wp-graphql-gravity-forms
License: GPL-3
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Expand Down
4 changes: 2 additions & 2 deletions wp-graphql-gravity-forms.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Author: AxePress Development
* Author URI: https://axepress.dev
* Update URI: https://github.com/axewp/wp-graphql-gravity-forms/releases
* Version: 0.12.6
* Version: 0.12.6.1
* Text Domain: wp-graphql-gravity-forms
* Domain Path: /languages
* Requires at least: 5.4.1
Expand Down Expand Up @@ -36,7 +36,7 @@
function gf_graphql_constants(): void {
// Plugin version.
if ( ! defined( 'WPGRAPHQL_GF_VERSION' ) ) {
define( 'WPGRAPHQL_GF_VERSION', '0.12.6' );
define( 'WPGRAPHQL_GF_VERSION', '0.12.6.1' );
}

// Plugin Folder Path.
Expand Down

0 comments on commit dd36f40

Please sign in to comment.