From 6dff8c50869f3c4a8cbdc2207eb51e1bdbceb76e Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Mon, 24 Jan 2022 12:27:39 +0100 Subject: [PATCH] build(release): 1.0.0 --- CHANGELOG.md | 20 ++++++++++++++++++++ package.json | 2 +- readme.txt | 2 +- wpgraphql-content-stats.php | 4 ++-- 4 files changed, 24 insertions(+), 4 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..2e44acc --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,20 @@ +# 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 (2022-01-24) + + +### Changes + +* add new fields to WPGraphQL (total, wordCount and readingTime) ([6400509](https://github.com/ArmandPhilippot/wp-graphql-content-stats/commit/640050985b8efe789ed99557261b98bc27a1c86a)) +* check for plugin dependencies on activation ([6501835](https://github.com/ArmandPhilippot/wp-graphql-content-stats/commit/650183507671e473dd75b0e1a6733f6e6407265c)) +* create new types for WPGraphQL ([f9acae9](https://github.com/ArmandPhilippot/wp-graphql-content-stats/commit/f9acae90881f12d57d6661de4f272eefce072e15)) +* handle plugin i18n ([4e565a2](https://github.com/ArmandPhilippot/wp-graphql-content-stats/commit/4e565a20d51c38ceadd9bf6ef70001bbd0cfbfeb)) +* **i18n:** generate translation strings + translate plugin in French ([ada0ad6](https://github.com/ArmandPhilippot/wp-graphql-content-stats/commit/ada0ad62c533a791d63000c1b61beb145e155ac7)) +* initial commit ([f3dedf0](https://github.com/ArmandPhilippot/wp-graphql-content-stats/commit/f3dedf01958b6fd0314e5e6b3e460dacfdffb929)) + + +### Docs + +* introduce the plugin and its requirements ([229725e](https://github.com/ArmandPhilippot/wp-graphql-content-stats/commit/229725e6b10ddbaf6320f3b24f332ce04f48c522)) diff --git a/package.json b/package.json index 767fc60..0b65a47 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wpgraphql-content-stats", - "version": "0.1.0", + "version": "1.0.0", "description": "Add some stats to WPGraphQL: total posts, word count and estimated reading time.", "license": "GPL-2.0-or-later", "author": { diff --git a/readme.txt b/readme.txt index 2b606b6..a5e0f02 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/wpgraphql-content-stats.php b/wpgraphql-content-stats.php index 22ef208..27a43b6 100644 --- a/wpgraphql-content-stats.php +++ b/wpgraphql-content-stats.php @@ -17,7 +17,7 @@ * Plugin Name: WPGraphQL Content Stats * Plugin URI: https://github.com/ArmandPhilippot/wp-graphql-content-stats * Description: Add some stats to WPGraphQL: total posts, word count and estimated reading time. - * Version: 0.1.0 + * Version: 1.0.0 * Requires at least: 5.2 * Requires PHP: 7.2 * Author: Armand Philippot @@ -40,7 +40,7 @@ * Start at version 0.1.0 and use SemVer - https://semver.org * Rename this for your plugin and update it as you release new versions. */ -define( 'WPGRAPHQL_CONTENT_STATS_VERSION', '0.1.0' ); +define( 'WPGRAPHQL_CONTENT_STATS_VERSION', '1.0.0' ); /** * Initialize the plugin.