diff --git a/.changeset/short-monkeys-crash.md b/.changeset/short-monkeys-crash.md deleted file mode 100644 index 163c6fb4..00000000 --- a/.changeset/short-monkeys-crash.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wptelegram": patch ---- - -Fixed Message Template info not expanding diff --git a/plugins/wptelegram/CHANGELOG.md b/plugins/wptelegram/CHANGELOG.md index 23a9cf50..b8a59a5e 100644 --- a/plugins/wptelegram/CHANGELOG.md +++ b/plugins/wptelegram/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 4.1.12 + +### Patch Changes + +- [#156](https://github.com/wpsocio/wp-projects/pull/156) [`d14a2f9`](https://github.com/wpsocio/wp-projects/commit/d14a2f9f13087a18c184a0ca23a2f981288ffe5e) Thanks [@irshadahmad21](https://github.com/irshadahmad21)! - Fixed Message Template info not expanding + ## 4.1.11 ### Patch Changes diff --git a/plugins/wptelegram/README.md b/plugins/wptelegram/README.md index e00a2eff..7bbfd691 100644 --- a/plugins/wptelegram/README.md +++ b/plugins/wptelegram/README.md @@ -5,7 +5,7 @@ **Requires at least:** 6.4 **Requires PHP:** 7.4 **Tested up to:** 6.6.1 -**Stable tag:** 4.1.11 +**Stable tag:** 4.1.12 **License:** GPL-3.0-or-later **License URI:** [https://www.gnu.org/licenses/gpl-3.0.html](https://www.gnu.org/licenses/gpl-3.0.html) **Donate link:** [wpsocio.com/donate](https://wpsocio.com/donate) diff --git a/plugins/wptelegram/composer.json b/plugins/wptelegram/composer.json index 0fc4d6e5..ec10084e 100644 --- a/plugins/wptelegram/composer.json +++ b/plugins/wptelegram/composer.json @@ -1,6 +1,6 @@ { "name": "wpsocio/wptelegram", - "version": "4.1.11", + "version": "4.1.12", "description": "Integrate your WordPress site perfectly with Telegram with full control.", "scripts": { "lint": "\"vendor/bin/phpcs\" --standard=../../phpcs.xml --extensions=php src/ dev.php", diff --git a/plugins/wptelegram/package.json b/plugins/wptelegram/package.json index c121192d..237e66b3 100644 --- a/plugins/wptelegram/package.json +++ b/plugins/wptelegram/package.json @@ -1,7 +1,7 @@ { "name": "wptelegram", "title": "WP Telegram", - "version": "4.1.11", + "version": "4.1.12", "description": "Integrate your WordPress site perfectly with Telegram with full control.", "private": true, "license": "GPL-3.0-or-later", diff --git a/plugins/wptelegram/src/languages/wptelegram.pot b/plugins/wptelegram/src/languages/wptelegram.pot index c3148659..30c02edd 100644 --- a/plugins/wptelegram/src/languages/wptelegram.pot +++ b/plugins/wptelegram/src/languages/wptelegram.pot @@ -2,16 +2,16 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: WP Telegram 4.1.11\n" +"Project-Id-Version: WP Telegram 4.1.12\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wptelegram\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2024-08-01T11:06:28+00:00\n" +"POT-Creation-Date: 2024-08-06T05:25:14+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"X-Generator: WP-CLI 2.11.0-alpha-9a91926\n" +"X-Generator: WP-CLI 2.11.0-alpha-b8e5d35\n" "language: en_US\n" "X-Poedit-Basepath: ..\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" diff --git a/plugins/wptelegram/src/readme.txt b/plugins/wptelegram/src/readme.txt index fc0ec12d..3d498336 100644 --- a/plugins/wptelegram/src/readme.txt +++ b/plugins/wptelegram/src/readme.txt @@ -5,7 +5,7 @@ Tags: telegram, notifications, posts, channel, group Requires at least: 6.4 Requires PHP: 7.4 Tested up to: 6.6.1 -Stable tag: 4.1.11 +Stable tag: 4.1.12 License: GPL-3.0-or-later License URI: https://www.gnu.org/licenses/gpl-3.0.html @@ -203,7 +203,7 @@ Automatic updates should work smoothly, but we still recommend you back up your == Changelog == -= 4.1.11 = -- Fixed settings page and post editor crash for older Wp versions += 4.1.12 = +- Fixed Message Template info not expanding [See full changelog](https://github.com/wpsocio/wptelegram/blob/main/CHANGELOG.md) diff --git a/plugins/wptelegram/src/wptelegram.php b/plugins/wptelegram/src/wptelegram.php index 0c67938e..670cfcd0 100644 --- a/plugins/wptelegram/src/wptelegram.php +++ b/plugins/wptelegram/src/wptelegram.php @@ -10,7 +10,7 @@ * Plugin Name: WP Telegram * Plugin URI: https://t.me/WPTelegram * Description: Integrate your WordPress website perfectly with Telegram. Send posts automatically to Telegram when published or updated, whether to a Telegram Channel, Group or private chat, with full control. Get your email notifications on Telegram. - * Version: 4.1.11 + * Version: 4.1.12 * Requires at least: 6.4 * Requires PHP: 7.4 * Author: WP Socio @@ -26,7 +26,7 @@ die; } -define( 'WPTELEGRAM_VER', '4.1.11' ); +define( 'WPTELEGRAM_VER', '4.1.12' ); defined( 'WPTELEGRAM_MAIN_FILE' ) || define( 'WPTELEGRAM_MAIN_FILE', __FILE__ );