diff --git a/CHANGELOG.md b/CHANGELOG.md index ee9992a2b..4d8740716 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +##### [Version 9.0.13](https://github.com/Codeinwp/tweet-old-post/compare/v9.0.12...v9.0.13) (2023-03-31) + +- Fixed hashtags issue with camel case text [#860](https://github.com/Codeinwp/tweet-old-post/issues/860) +- WordPress core tested up to version 6.2 +- Fixed instant sharing regression [#861](https://github.com/Codeinwp/tweet-old-post/issues/861) + ##### [Version 9.0.12](https://github.com/Codeinwp/tweet-old-post/compare/v9.0.11...v9.0.12) (2023-01-31) * Improved query strings encoding diff --git a/includes/class-rop.php b/includes/class-rop.php index 1d7867e38..c0990bd1d 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.12'; + $this->version = '9.0.13'; $this->load_dependencies(); $this->set_locale(); diff --git a/package.json b/package.json index a8c24c93a..e2c387d23 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tweet-old-post", - "version": "9.0.12", + "version": "9.0.13", "description": "Tweet Old Posts plugin", "repository": { "type": "git", diff --git a/readme.txt b/readme.txt index 6253409fe..d8bdf09c5 100644 --- a/readme.txt +++ b/readme.txt @@ -305,6 +305,15 @@ http://revive.social/plugins/revive-old-post == Changelog == +##### [Version 9.0.13](https://github.com/Codeinwp/tweet-old-post/compare/v9.0.12...v9.0.13) (2023-03-31) + +- Fixed hashtags issue with camel case text [#860](https://github.com/Codeinwp/tweet-old-post/issues/860) +- WordPress core tested up to version 6.2 +- Fixed instant sharing regression [#861](https://github.com/Codeinwp/tweet-old-post/issues/861) + + + + ##### [Version 9.0.12](https://github.com/Codeinwp/tweet-old-post/compare/v9.0.11...v9.0.12) (2023-01-31) * Improved query strings encoding diff --git a/tweet-old-post.php b/tweet-old-post.php index b0a05982b..e1258fd62 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.12 + * Version: 9.0.13 * Author: revive.social * Author URI: https://revive.social/ * Requires at least: 4.7 @@ -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.12' ); + define( 'ROP_LITE_VERSION', '9.0.13' ); define( 'ROP_LITE_BASE_FILE', __FILE__ ); $debug = false; if ( function_exists( 'wp_get_environment_type' ) ) {