From 0e677dbc69c6db11f91e220b43c506797797bd59 Mon Sep 17 00:00:00 2001 From: Wasseem Khayrattee Date: Mon, 9 Oct 2023 17:56:46 +0400 Subject: [PATCH] doc: adjustment and changelog to reflect new release v2.2.0 --- CHANGELOG.md | 10 ++++++++++ README.md | 4 ++-- readme.txt | 9 +++++++-- ringier-bus.php | 4 ++-- 4 files changed, 21 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 17019fc..030a8ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog Details +### 2.2.0 (Oct 9, 2023) ### + +* [NEW] Introduction of the possibility to add a custom Top level primary category - can ENABLE/DISABLED when needed + * Addition of two new fields on the Settings page for the below + * use-case: when you have several wordpress instance on the same root domain + * by default, it will use the full domain as the primary category when enabled, with the flexibility for you to change it on the *settings page* + +* [UPDATE] Refactored the logic for saving custom fields (on gutenberg) to work as soon as the plugin is active, irrespective if the BUS sync is OFF +* [FIX] There was a bug that could prevent the primary category of an article from being fetched from the fallback method if the one from Yoast fails + ### 2.1.0 (Jul 18, 2023) ### * [UPDATE] General updates to the JSON structure to match the new BUS Specs (See [PR#5](https://github.com/RingierIMU/mkt-plugin-wordpress-bus/pull/5) diff --git a/README.md b/README.md index b207fe4..9e8a61e 100644 --- a/README.md +++ b/README.md @@ -5,8 +5,8 @@ **Contributors:** [RingierSA](https://profiles.wordpress.org/ringier/), [wkhayrattee](https://profiles.wordpress.org/wkhayrattee/) **Tags:** ringier, bus, api, cde **Requires at least:** 6.0 -**Tested up to:** 6.2.2 -**Stable tag:** 2.1.0 +**Tested up to:** 6.3.1 +**Stable tag:** 2.2.0 **Requires PHP:** 8.0.2 **License:** GPLv2 or later **License URI:** http://www.gnu.org/licenses/gpl-2.0.html diff --git a/readme.txt b/readme.txt index b6fd140..d2e3e00 100644 --- a/readme.txt +++ b/readme.txt @@ -2,8 +2,8 @@ Contributors: ringier, wkhayrattee Tags: ringier, bus, api, cde Requires at least: 6.0 -Tested up to: 6.2.2 -Stable tag: 2.1.0 +Tested up to: 6.3.1 +Stable tag: 2.2.0 Requires PHP: 8.0.2 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -73,6 +73,11 @@ An info log file named ringier_bus_plugin.log, currently not viewable in the adm == Changelog == +### 2.2.0 (Oct 9, 2023) ### +* [NEW] Introduction of the possibility to add a custom Top level primary category - can ENABLE/DISABLED when needed | See Changelog.md +* [UPDATE] Refactored the logic for saving custom fields (on gutenberg) to work as soon as the plugin is active, irrespective if the BUS sync is OFF +* [FIX] There was a bug that could prevent the primary category of an article from being fetched from the fallback method if the one from Yoast fails + ### 2.1.0 (Jul 18, 2023) ### * [UPDATE] General updates to the JSON structure to match the new BUS Specs - See Changelog.md * [UPDATE] New widget for the new field publication reason on the Gutenberg editor diff --git a/ringier-bus.php b/ringier-bus.php index 2613184..080a664 100644 --- a/ringier-bus.php +++ b/ringier-bus.php @@ -10,7 +10,7 @@ * Plugin Name: Ringier Bus * Plugin URI: https://github.com/RingierIMU/mkt-plugin-wordpress-bus * Description: A plugin to push events to Ringier CDE via the BUS API whenever an article is created, updated or deleted - * Version: 2.1.0 + * Version: 2.2.0 * Requires at least: 6.0 * Author: Ringier SA, Wasseem Khayrattee * Author URI: https://www.ringier.com/ @@ -49,7 +49,7 @@ * Some global constants for our use-case */ define('RINGIER_BUS_DS', DIRECTORY_SEPARATOR); -define('RINGIER_BUS_PLUGIN_VERSION', '2.1.0'); +define('RINGIER_BUS_PLUGIN_VERSION', '2.2.0'); define('RINGIER_BUS_PLUGIN_MINIMUM_WP_VERSION', '6.0'); define('RINGIER_BUS_PLUGIN_DIR_URL', plugin_dir_url(__FILE__)); //has trailing slash at end define('RINGIER_BUS_PLUGIN_DIR', plugin_dir_path(__FILE__)); //has trailing slash at end