Skip to content

Commit

Permalink
doc: adjustment and changelog to reflect new release v2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wkhayrattee committed Oct 9, 2023
1 parent 9719cd5 commit 0e677db
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 6 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
9 changes: 7 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions ringier-bus.php
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 0e677db

Please sign in to comment.