diff --git a/CHANGELOG.md b/CHANGELOG.md index 5bc15d0..64a4ecf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ 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.1](https://github.com/ArmandPhilippot/wp-graphql-gravatar/compare/v1.1.0...v1.1.1) (2021-12-06) + +### Bug Fixes + +- make the success notice temporary ([ab7625d](https://github.com/ArmandPhilippot/wp-graphql-gravatar/commit/ab7625de32b8d1897b283270ed36104ea9666e33)) + ## [1.1.0](https://github.com/ArmandPhilippot/wp-graphql-gravatar/compare/v1.0.1...v1.1.0) (2021-12-06) ### Features diff --git a/package-lock.json b/package-lock.json index 480fc8b..118a552 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "wp-graphql-gravatar", - "version": "1.1.0", + "version": "1.1.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "wp-graphql-gravatar", - "version": "1.1.0", + "version": "1.1.1", "license": "GPL-2.0-or-later", "devDependencies": { "@commitlint/cli": "^15.0.0", diff --git a/package.json b/package.json index 77ea9eb..19fb589 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wp-graphql-gravatar", - "version": "1.1.0", + "version": "1.1.1", "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 50b4fed..c4a1cd4 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.1.0 +Stable tag: 1.1.1 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 13e40a0..11f52a5 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.1.0 + * Version: 1.1.1 * Requires at least: 5.2 * Requires PHP: 7.3 */ @@ -35,7 +35,7 @@ /* * Currently plugin version. */ -define( 'WP_GRAPHQL_GRAVATAR_VERSION', '1.1.0' ); +define( 'WP_GRAPHQL_GRAVATAR_VERSION', '1.1.1' ); /** * The code that runs during plugin activation.