From 5a46eec7e7d942e09b0d03d68466ebc6c1466162 Mon Sep 17 00:00:00 2001 From: Jason Bahl Date: Fri, 11 Nov 2022 14:04:03 -0700 Subject: [PATCH] - update version, changelog for release --- readme.txt | 12 +++++++++++- wp-graphql-smart-cache.php | 4 ++-- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/readme.txt b/readme.txt index 6d4fefe2..e4622dce 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: WPGraphQL, Cache, API, Invalidation, Persisted Queries, GraphQL, Performan Requires at least: 5.6 Tested up to: 6.0 Requires PHP: 7.4 -Stable tag: 0.3.1 +Stable tag: 0.3.2 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -24,6 +24,16 @@ In order to use v0.2.0+ of WPGraphQL Smart Cache, you will need WPGraphQL v1.12. == Changelog == += 0.3.2 = + +**New Features** + +- ([#178](https://github.com/wp-graphql/wp-graphql-smart-cache/pull/178)): feat: add new "graphql_cache_is_object_cache_enabled" filter + +**Chores/Bugfixes** + +- ([#179](https://github.com/wp-graphql/wp-graphql-smart-cache/pull/179)): fix: prevent error when users install the plugin with Composer + = 0.3.1 = - chore: update readme.txt with tags, updated "tested up to" version diff --git a/wp-graphql-smart-cache.php b/wp-graphql-smart-cache.php index 9c9be0f2..03b83314 100644 --- a/wp-graphql-smart-cache.php +++ b/wp-graphql-smart-cache.php @@ -11,7 +11,7 @@ * Requires PHP: 7.4 * Text Domain: wp-graphql-smart-cache * Domain Path: /languages - * Version: 0.3.1 + * Version: 0.3.2 * License: GPL-3 * License URI: https://www.gnu.org/licenses/gpl-3.0.html * @@ -36,7 +36,7 @@ } const WPGRAPHQL_REQUIRED_MIN_VERSION = '1.2.0'; -const WPGRAPHQL_SMART_CACHE_VERSION = '0.3.1'; +const WPGRAPHQL_SMART_CACHE_VERSION = '0.3.2'; require __DIR__ . '/vendor/autoload.php';