From 13a728231753969f6a412ab450e1f1743e180b5b Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Mon, 6 Dec 2021 17:02:21 +0100 Subject: [PATCH] chore(release): 1.1.0 --- CHANGELOG.md | 11 +++++++++++ package-lock.json | 4 ++-- package.json | 2 +- readme.txt | 2 +- wp-graphql-gravatar.php | 4 ++-- 5 files changed, 17 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 133d7dd..5bc15d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [1.1.0](https://github.com/ArmandPhilippot/wp-graphql-gravatar/compare/v1.0.1...v1.1.0) (2021-12-06) + +### Features + +- add an admin interface to define plugin options ([855cdaa](https://github.com/ArmandPhilippot/wp-graphql-gravatar/commit/855cdaa00f1751b6e28985d77c1291bcd43ea157)) +- use user settings to query gravatar ([98911e6](https://github.com/ArmandPhilippot/wp-graphql-gravatar/commit/98911e6c7f657deae3f93177616d392d5c4cf621)) + +### Bug Fixes + +- display error notice if WP GraphQL is not installed/activated ([ae94d34](https://github.com/ArmandPhilippot/wp-graphql-gravatar/commit/ae94d34b14cd49696bcbabc6099419bee1018eca)) + ### [1.0.1](https://github.com/ArmandPhilippot/wp-graphql-gravatar/compare/v1.0.0...v1.0.1) (2021-12-05) ### Bug Fixes diff --git a/package-lock.json b/package-lock.json index 25a25fa..480fc8b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "wp-graphql-gravatar", - "version": "1.0.1", + "version": "1.1.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "wp-graphql-gravatar", - "version": "1.0.1", + "version": "1.1.0", "license": "GPL-2.0-or-later", "devDependencies": { "@commitlint/cli": "^15.0.0", diff --git a/package.json b/package.json index 2853b95..77ea9eb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wp-graphql-gravatar", - "version": "1.0.1", + "version": "1.1.0", "description": "Add a WP GraphQL field containing the Gravatar url of the comment author.", "author": "Armand Philippot", "license": "GPL-2.0-or-later", diff --git a/readme.txt b/readme.txt index 0caa008..50b4fed 100644 --- a/readme.txt +++ b/readme.txt @@ -5,7 +5,7 @@ Tags: plugin Requires at least: 5.2 Tested up to: 5.2 Requires PHP: 7.2 -Stable tag: 1.0.1 +Stable tag: 1.1.0 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html diff --git a/wp-graphql-gravatar.php b/wp-graphql-gravatar.php index fe5364c..ec971b2 100644 --- a/wp-graphql-gravatar.php +++ b/wp-graphql-gravatar.php @@ -20,7 +20,7 @@ * Author URI: https://www.armandphilippot.com * Text Domain: wpg-gravatar * Domain Path: /languages - * Version: 1.0.1 + * Version: 1.1.0 * Requires at least: 5.2 * Requires PHP: 7.3 */ @@ -35,7 +35,7 @@ /* * Currently plugin version. */ -define( 'WP_GRAPHQL_GRAVATAR_VERSION', '1.0.1' ); +define( 'WP_GRAPHQL_GRAVATAR_VERSION', '1.1.0' ); /** * Initialize the plugin.