Skip to content

Commit

Permalink
build(release): 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ArmandPhilippot committed Jan 24, 2022
1 parent 229725e commit 6dff8c5
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 4 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions wpgraphql-content-stats.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.
Expand Down

0 comments on commit 6dff8c5

Please sign in to comment.