From eb623d2936439e6b3a0e2aa93b5a6fb6aab83146 Mon Sep 17 00:00:00 2001 From: Dharmesh Patel Date: Wed, 13 Apr 2022 19:22:25 +0530 Subject: [PATCH 1/2] Draft release for 1.1.1 --- CHANGELOG.md | 5 +++++ package-lock.json | 2 +- package.json | 2 +- readme.txt | 5 ++++- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a8de24de..aee22c84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] - TBD +## [1.1.1] - 2022-04-13 +### Fixed +- If Autoshare is enabled by default, it does not consider the post-level "Tweet this post" checkbox and always tweets (props [@iamdharmesh](https://github.com/iamdharmesh), [@Sidsector9](https://github.com/Sidsector9) via [#155](https://github.com/10up/autoshare-for-twitter/pull/155)). + ## [1.1.0] - 2022-04-13 ### Added - Colored icons to represent autoshare status (props [@linawiezkowiak](https://github.com/linawiezkowiak), [@oszkarnagy](https://github.com/oszkarnagy), [@Sidsector9](https://github.com/Sidsector9), [@dinhtungdu](https://github.com/dinhtungdu) via [#142](https://github.com/10up/autoshare-for-twitter/pull/142)). @@ -108,6 +112,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - Initial closed source release (props [@scottlee](https://github.com/scottlee/)). [Unreleased]: https://github.com/10up/autoshare-for-twitter/compare/trunk...develop +[1.1.1]: https://github.com/10up/autoshare-for-twitter/compare/1.1.0...1.1.1 [1.1.0]: https://github.com/10up/autoshare-for-twitter/compare/1.0.6...1.1.0 [1.0.6]: https://github.com/10up/autoshare-for-twitter/compare/1.0.5...1.0.6 [1.0.5]: https://github.com/10up/autoshare-for-twitter/compare/1.0.4...1.0.5 diff --git a/package-lock.json b/package-lock.json index b73fb038..d6f5316a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@10up/autoshare-for-twitter", - "version": "1.1.0", + "version": "1.1.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index f95451b5..004dbd2b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@10up/autoshare-for-twitter", - "version": "1.1.0", + "version": "1.1.1", "description": "Automatically tweets a post title, URL, and optional description.", "scripts": { "watch": "webpack -wd --config webpack.gutenberg.config.js", diff --git a/readme.txt b/readme.txt index 8b32be01..273403fb 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: twitter, tweet, autoshare, auto-share, auto share, share, soc Requires at least: 4.9 Tested up to: 5.9 Requires PHP: 7.2 -Stable tag: 1.1.0 +Stable tag: 1.1.1 License: GPL-2.0-or-later License URI: https://spdx.org/licenses/GPL-2.0-or-later.html @@ -30,6 +30,9 @@ Yes, yes it does! For more details on this, see [#44](https://github.com/10up/a == Changelog == += 1.1.1 = +* **Fixed:** If Autoshare is enabled by default, it does not consider the post-level "Tweet this post" checkbox and always tweets (props [@iamdharmesh](https://github.com/iamdharmesh), [@Sidsector9](https://github.com/Sidsector9)). + = 1.1.0 = * **Added:** Colored icons to represent autoshare status (props [@linawiezkowiak](https://github.com/linawiezkowiak), [@oszkarnagy](https://github.com/oszkarnagy), [@Sidsector9](https://github.com/Sidsector9), [@dinhtungdu](https://github.com/dinhtungdu)). * **Added:** Sample copy for example responses (props [@iamdharmesh](https://github.com/iamdharmesh), [@Sidsector9](https://github.com/Sidsector9), [@jeffpaul](https://github.com/jeffpaul)). From 0993af9b065fc10811e5403b0b8d491292aa54f7 Mon Sep 17 00:00:00 2001 From: Dharmesh Patel Date: Wed, 13 Apr 2022 19:31:53 +0530 Subject: [PATCH 2/2] bumped version to v1.1.1 --- autoshare-for-twitter.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autoshare-for-twitter.php b/autoshare-for-twitter.php index aa9a65e9..d688e768 100644 --- a/autoshare-for-twitter.php +++ b/autoshare-for-twitter.php @@ -3,7 +3,7 @@ * Plugin Name: Autoshare for Twitter * Description: Automatically tweets the post title or custom message and a link to the post. * Disclaimer: TWITTER, TWEET, RETWEET and the Twitter logo are trademarks of Twitter, Inc. or its affiliates. - * Version: 1.1.0 + * Version: 1.1.1 * Requires at least: 4.9 * Requires PHP: 7.2 * Author: 10up @@ -20,7 +20,7 @@ } define( 'AUTOSHARE_FOR_TWITTER', __FILE__ ); -define( 'AUTOSHARE_FOR_TWITTER_VERSION', '1.1.0' ); +define( 'AUTOSHARE_FOR_TWITTER_VERSION', '1.1.1' ); define( 'AUTOSHARE_FOR_TWITTER_URL', plugin_dir_url( __FILE__ ) ); define( 'AUTOSHARE_FOR_TWITTER_PATH', plugin_dir_path( __FILE__ ) ); define( 'AUTOSHARE_FOR_TWITTER_INC', AUTOSHARE_FOR_TWITTER_PATH . 'includes/' );