From a17a8073a9c5406a3471b731b932c1805e0ffe20 Mon Sep 17 00:00:00 2001 From: "themeisle[bot]" Date: Thu, 21 Apr 2022 21:29:04 +0000 Subject: [PATCH] chore(release): 9.0.7 ##### [Version 9.0.7](https://github.com/Codeinwp/tweet-old-post/compare/v9.0.6...v9.0.7) (2022-04-21) ### Info - Update WP tested up to version - Added two new hooks `rop_before_prepare_post` and `rop_before_share` that fire before post is shared - Clean up some old options from version < 8.0 when housekeeping option is turned on --- CHANGELOG.md | 7 +++++++ includes/class-rop.php | 2 +- package.json | 2 +- readme.txt | 10 ++++++++++ tweet-old-post.php | 4 ++-- 5 files changed, 21 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d1e5bb51..1d835295f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +##### [Version 9.0.7](https://github.com/Codeinwp/tweet-old-post/compare/v9.0.6...v9.0.7) (2022-04-21) + +### Info +- Update WP tested up to version +- Added two new hooks `rop_before_prepare_post` and `rop_before_share` that fire before post is shared +- Clean up some old options from version < 8.0 when housekeeping option is turned on + ##### [Version 9.0.6](https://github.com/Codeinwp/tweet-old-post/compare/v9.0.5...v9.0.6) (2021-12-13) ### Fixes diff --git a/includes/class-rop.php b/includes/class-rop.php index 417ddee85..87266485c 100644 --- a/includes/class-rop.php +++ b/includes/class-rop.php @@ -68,7 +68,7 @@ class Rop { public function __construct() { $this->plugin_name = 'rop'; - $this->version = '9.0.6'; + $this->version = '9.0.7'; $this->load_dependencies(); $this->set_locale(); diff --git a/package.json b/package.json index d88d81d7b..2510d6d43 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tweet-old-post", - "version": "9.0.6", + "version": "9.0.7", "description": "Tweet Old Posts plugin", "repository": { "type": "git", diff --git a/readme.txt b/readme.txt index 0ab359425..344dfbe68 100644 --- a/readme.txt +++ b/readme.txt @@ -305,6 +305,16 @@ http://revive.social/plugins/revive-old-post == Changelog == +##### [Version 9.0.7](https://github.com/Codeinwp/tweet-old-post/compare/v9.0.6...v9.0.7) (2022-04-21) + +### Info +- Update WP tested up to version +- Added two new hooks and that fire before post is shared +- Clean up some old options from version < 8.0 when housekeeping option is turned on + + + + ##### [Version 9.0.6](https://github.com/Codeinwp/tweet-old-post/compare/v9.0.5...v9.0.6) (2021-12-13) ### Fixes diff --git a/tweet-old-post.php b/tweet-old-post.php index 7de7b7e98..5ffcfb104 100644 --- a/tweet-old-post.php +++ b/tweet-old-post.php @@ -16,7 +16,7 @@ * Plugin Name: Revive Old Posts * Plugin URI: https://revive.social/ * Description: WordPress plugin that helps you to keeps your old posts alive by sharing them and driving more traffic to them from twitter/facebook or linkedin. It also helps you to promote your content. You can set time and no of posts to share to drive more traffic.For questions, comments, or feature requests, contact us! - * Version: 9.0.6 + * Version: 9.0.7 * Author: revive.social * Author URI: https://revive.social/ * Requires at least: 3.5 @@ -162,7 +162,7 @@ function run_rop() { define( 'ROP_CRON_ALTERNATIVE', $use_remote_cron ); define( 'ROP_PRO_URL', 'http://revive.social/plugins/revive-old-post/' ); - define( 'ROP_LITE_VERSION', '9.0.6' ); + define( 'ROP_LITE_VERSION', '9.0.7' ); define( 'ROP_LITE_BASE_FILE', __FILE__ ); $debug = false; if ( function_exists( 'wp_get_environment_type' ) ) {