Skip to content

Commit

Permalink
choe: version bump (#269)
Browse files Browse the repository at this point in the history
  • Loading branch information
justlevine authored Jun 25, 2022
1 parent 06aaa62 commit c815ba0
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## v0.11.1.1 - Hotfix
This _hotfix_ release fixes issues with the Github Updater attempting to install plugin updates from the wrong release asset.

- fix: ensure results of graphql_gf_update_repo_url are always trailing-slashed.
- chore: add Composer command for generating plugin .zip
- chore: add Github Action for adding plugin .zip to release.

## v0.11.1 - reCAPTCHA Settings & Submission Confirmations

This _minor_ release adds the reCaptcha V2 `type` and `publicKey` to `gfSettings.recaptcha`, the validated `confirmation` response to form submission mutation payloads, and fixes a handful of bugs.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
A WordPress plugin that provides a GraphQL API for interacting with Gravity Forms.


![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/harness-software/wp-graphql-gravity-forms/v0.11.1) [![Coverage Status](https://coveralls.io/repos/github/harness-software/wp-graphql-gravity-forms/badge.svg?branch=develop)](https://coveralls.io/github/harness-software/wp-graphql-gravity-forms?branch=develop) [![WordPress Coding Standards](https://github.com/harness-software/wp-graphql-gravity-forms/actions/workflows/code-standard.yml/badge.svg)](https://github.com/harness-software/wp-graphql-gravity-forms/actions/workflows/code-standard.yml) [![Code Quality](https://github.com/harness-software/wp-graphql-gravity-forms/actions/workflows/code-quality.yml/badge.svg)](https://github.com/harness-software/wp-graphql-gravity-forms/actions/workflows/code-quality.yml) [![Schema Linter](https://github.com/harness-software/wp-graphql-gravity-forms/actions/workflows/schema-linter.yml/badge.svg)](https://github.com/harness-software/wp-graphql-gravity-forms/actions/workflows/schema-linter.yml) ![GitHub forks](https://img.shields.io/github/forks/harness-software/wp-graphql-gravity-forms?style=social) ![GitHub Repo stars](https://img.shields.io/github/stars/harness-software/wp-graphql-gravity-forms?style=social)
![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/harness-software/wp-graphql-gravity-forms/v0.11.1.1) [![Coverage Status](https://coveralls.io/repos/github/harness-software/wp-graphql-gravity-forms/badge.svg?branch=develop)](https://coveralls.io/github/harness-software/wp-graphql-gravity-forms?branch=develop) [![WordPress Coding Standards](https://github.com/harness-software/wp-graphql-gravity-forms/actions/workflows/code-standard.yml/badge.svg)](https://github.com/harness-software/wp-graphql-gravity-forms/actions/workflows/code-standard.yml) [![Code Quality](https://github.com/harness-software/wp-graphql-gravity-forms/actions/workflows/code-quality.yml/badge.svg)](https://github.com/harness-software/wp-graphql-gravity-forms/actions/workflows/code-quality.yml) [![Schema Linter](https://github.com/harness-software/wp-graphql-gravity-forms/actions/workflows/schema-linter.yml/badge.svg)](https://github.com/harness-software/wp-graphql-gravity-forms/actions/workflows/schema-linter.yml) ![GitHub forks](https://img.shields.io/github/forks/harness-software/wp-graphql-gravity-forms?style=social) ![GitHub Repo stars](https://img.shields.io/github/stars/harness-software/wp-graphql-gravity-forms?style=social)

* [Join the WPGraphQL community on Slack.](https://join.slack.com/t/wp-graphql/shared_invite/zt-3vloo60z-PpJV2PFIwEathWDOxCTTLA)
* [Documentation](#documentation)
Expand Down
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.0
Requires PHP: 7.4
Requires Gravity Forms: 2.5.0
Requires WPGraphQL: 1.7.0
Stable tag: 0.11.1
Stable tag: 0.11.1.1
Maintained at: https://github.com/harness-software/wp-graphql-gravity-forms
License: GPL-3
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Expand Down
6 changes: 3 additions & 3 deletions wp-graphql-gravity-forms.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
* Author: Harness Software
* Author URI: https://www.harnessup.com
* Update URI: https://github.com/harness-software/wp-graphql-gravity-forms/releases
* Version: 0.11.1
* Version: 0.11.1.1
* Text Domain: wp-graphql-gravity-forms
* Domain Path: /languages
* Requires at least: 5.4.1
* Tested up to: 5.9.0
* Requires PHP: 7.4+
* Requires PHP: 7.4
* WPGraphQL requires at least: 1.7.0
* GravityForms requires at least: 2.5.0
* License: GPL-3
Expand All @@ -29,7 +29,7 @@
function gf_graphql_constants() : void {
// Plugin version.
if ( ! defined( 'WPGRAPHQL_GF_VERSION' ) ) {
define( 'WPGRAPHQL_GF_VERSION', '0.11.1' );
define( 'WPGRAPHQL_GF_VERSION', '0.11.1.1' );
}

// Plugin Folder Path.
Expand Down

0 comments on commit c815ba0

Please sign in to comment.