From cbddd8324076d1972b89cd1e35184fe90d715f6f Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Sun, 5 Dec 2021 22:24:48 +0100 Subject: [PATCH] chore(release): 1.0.0 --- CHANGELOG.md | 9 +++++++++ package-lock.json | 4 ++-- package.json | 2 +- readme.txt | 2 +- wp-graphql-gravatar.php | 4 ++-- 5 files changed, 15 insertions(+), 6 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..a79a076 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,9 @@ +# Changelog + +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.0.0 (2021-12-05) + +### Bug Fixes + +- retrieve gravatar url for logged in user ([5e4dc89](https://github.com/ArmandPhilippot/wp-graphql-gravatar/commit/5e4dc89c3c6b145891156234a54ff4ea59aae327)) diff --git a/package-lock.json b/package-lock.json index 176a14d..4d2865f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "wp-graphql-gravatar", - "version": "0.1.0", + "version": "1.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "wp-graphql-gravatar", - "version": "0.1.0", + "version": "1.0.0", "license": "GPL-2.0-or-later", "devDependencies": { "@commitlint/cli": "^15.0.0", diff --git a/package.json b/package.json index 61f5d04..7948b6b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wp-graphql-gravatar", - "version": "0.1.0", + "version": "1.0.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 23f0849..956c455 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: 0.1.0 +Stable tag: 1.0.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 2802a65..c17cc9a 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: 0.1.0 + * Version: 1.0.0 * Requires at least: 5.2 * Requires PHP: 7.3 */ @@ -35,7 +35,7 @@ /* * Currently plugin version. */ -define( 'WP_GRAPHQL_GRAVATAR_VERSION', '0.1.0' ); +define( 'WP_GRAPHQL_GRAVATAR_VERSION', '1.0.0' ); /** * Initialize the plugin.