Skip to content

Commit

Permalink
release: v0.1.1 (#80)
Browse files Browse the repository at this point in the history
* chore: version bump

* chore: update changelog
  • Loading branch information
justlevine authored Mar 23, 2024
1 parent e1fcba9 commit ab3e4d2
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 7 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## Unreleased

## v0.1.1

This _minor_ release adds support for more social fields in the `RankMathSocialMetaSettings` and `RankMathUserSeo` types. Additionally, it fixes a bug where the `seo.openGraph.image` field would fail to resolve if provided a string image.

There are **no breaking changes**.

### What's changed

- feat: Expose `additionalProfiles` field on `RankMathSocialMetaSettings`. props: @colis 🙌
- feat: Expose `facebookProfileUrl`, `twitterUserName`, and `additionalProfiles` social fields on `RankMathUserSeo`. props: @colis 🙌
- fix: Correctly resolve `seo.openGraph.image` field when parsed value is a string.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Adds WPGraphQL support for [Rank Math SEO](https://rankmath.com/). Built with [W

-----

![Packagist License](https://img.shields.io/packagist/l/axepress/wp-graphql-rank-math?color=green) ![Packagist Version](https://img.shields.io/packagist/v/axepress/wp-graphql-rank-math?label=stable) ![GitHub commits since latest release (by SemVer)](https://img.shields.io/github/commits-since/AxeWP/wp-graphql-rank-math/0.1.0) ![GitHub forks](https://img.shields.io/github/forks/AxeWP/wp-graphql-rank-math?style=social) ![GitHub Repo stars](https://img.shields.io/github/stars/AxeWP/wp-graphql-rank-math?style=social)<br />
![Packagist License](https://img.shields.io/packagist/l/axepress/wp-graphql-rank-math?color=green) ![Packagist Version](https://img.shields.io/packagist/v/axepress/wp-graphql-rank-math?label=stable) ![GitHub commits since latest release (by SemVer)](https://img.shields.io/github/commits-since/AxeWP/wp-graphql-rank-math/0.1.1) ![GitHub forks](https://img.shields.io/github/forks/AxeWP/wp-graphql-rank-math?style=social) ![GitHub Repo stars](https://img.shields.io/github/stars/AxeWP/wp-graphql-rank-math?style=social)<br />
![CodeQuality](https://img.shields.io/github/actions/workflow/status/axewp/wp-graphql-rank-math/code-quality.yml?branch=develop&label=Code%20Quality)
![Integration Tests](https://img.shields.io/github/actions/workflow/status/axewp/wp-graphql-rank-math/integration-testing.yml?branch=develop&label=Integration%20Testing)
![Coding Standards](https://img.shields.io/github/actions/workflow/status/axewp/wp-graphql-rank-math/code-standard.yml?branch=develop&label=WordPress%20Coding%20Standards)
Expand Down
2 changes: 1 addition & 1 deletion phpstan/constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@

define( 'WPGRAPHQL_SEO_AUTOLOAD', true );
define( 'WPGRAPHQL_SEO_PLUGIN_FILE', 'wp-graphql-rank-math.php' );
define( 'WPGRAPHQL_SEO_VERSION', '0.1.0' );
define( 'WPGRAPHQL_SEO_VERSION', '0.1.1' );
4 changes: 2 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
Contributors: axepress, justlevine
Tags: GraphQL, Gatsby, Headless, WPGraphQL, React, Rest, RankMath, Seo, Schema
Requires at least: 6.0
Tested up to: 6.4.2
Tested up to: 6.4.3
Requires PHP: 7.4
Requires WPGraphQL: 1.14.0
Stable tag: 0.1.0
Stable tag: 0.1.1
License: GPL-3
License URI: https://www.gnu.org/licenses/gpl-3.0.html

Expand Down
6 changes: 3 additions & 3 deletions wp-graphql-rank-math.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Author: AxePress
* Author URI: https://github.com/AxeWP
* Update URI: https://github.com/AxeWP/wp-graphql-rank-math
* Version: 0.1.0
* Version: 0.1.1
* Text Domain: wp-graphql-rank-math
* Domain Path: /languages
* Requires at least: 6.0
Expand All @@ -20,7 +20,7 @@
* @package WPGraphQL\RankMath
* @author axepress
* @license GPL-3
* @version 0.1.0
* @version 0.1.1
*/

// Exit if accessed directly.
Expand Down Expand Up @@ -53,7 +53,7 @@
function graphql_seo_constants(): void {
// Plugin version.
if ( ! defined( 'WPGRAPHQL_SEO_VERSION' ) ) {
define( 'WPGRAPHQL_SEO_VERSION', '0.1.0' );
define( 'WPGRAPHQL_SEO_VERSION', '0.1.1' );
}

// Plugin Folder Path.
Expand Down

0 comments on commit ab3e4d2

Please sign in to comment.